Motion tracking III: Triangulation via Pose2sim

In the previous script ((ADD?)), we have extracted 2D keypoints for each trial (per each video, 3 in total). In this script, we will use Pose2sim to calibrate the 3 cameras present in the lab setup, and triangulate the 3D position of the keypoints.

Demo of this pipeline has been published on EnvisionBOX

For more information on Pose2sim, please refer to the Pose2sim documentation

Code to prepare the environment
from Pose2Sim import Pose2Sim
import os
import glob
import pandas as pd
from trc import TRCData
import pandas as pd
import shutil
import cv2
import numpy as np
import toml

curfolder = os.getcwd()

# Here is our config.file
pose2simprjfolder = curfolder + '\Pose2Sim\Empty_project_FLESH_settings\\'

# Here we store the data
inputfolder = curfolder + '\projectdata\\'
folderstotrack = glob.glob(curfolder+'\\projectdata\*')
#print(folderstotrack)

# Here we store mass information (weight, height) about participants
META = pd.read_csv(curfolder + '\\..\\00_RAWDATA\META_mass.txt', sep='\t') # Note that we actually need the weight only if we do the marker augmentation

# Initiate empty list
pcnfolders = []

# Get all the folders per session, per participant
for i in folderstotrack:
    pcn1folders = glob.glob(i + '/P0/*')
    pcn2folders = glob.glob(i + '/P1/*')
    pcnfolders_in_session = pcn1folders + pcn2folders

    pcnfolders = pcnfolders + pcnfolders_in_session


# Get rid of all pontetially confusing files/folders
pcnfolders = [x for x in pcnfolders if 'Config' not in x]
pcnfolders = [x for x in pcnfolders if 'opensim' not in x]
pcnfolders = [x for x in pcnfolders if 'xml' not in x]
pcnfolders = [x for x in pcnfolders if 'ResultsInverseDynamics' not in x]
pcnfolders = [x for x in pcnfolders if 'ResultsInverseKinematics' not in x]
pcnfolders = [x for x in pcnfolders if 'sto' not in x]
pcnfolders = [x for x in pcnfolders if 'txt' not in x]
print(pcnfolders[0:10])
['e:\\FLESH_ContinuousBodilyEffort\\02_MotionTracking_processing\\projectdata\\Session_0_1/P0\\0_1_tpose_p0', 'e:\\FLESH_ContinuousBodilyEffort\\02_MotionTracking_processing\\projectdata\\Session_0_1/P0\\0_1_0_p0', 'e:\\FLESH_ContinuousBodilyEffort\\02_MotionTracking_processing\\projectdata\\Session_0_1/P0\\0_1_3_p0', 'e:\\FLESH_ContinuousBodilyEffort\\02_MotionTracking_processing\\projectdata\\Session_0_1/P0\\0_1_4_p0', 'e:\\FLESH_ContinuousBodilyEffort\\02_MotionTracking_processing\\projectdata\\Session_0_1/P0\\0_1_5_p0', 'e:\\FLESH_ContinuousBodilyEffort\\02_MotionTracking_processing\\projectdata\\Session_0_1/P0\\0_1_6_p0', 'e:\\FLESH_ContinuousBodilyEffort\\02_MotionTracking_processing\\projectdata\\Session_0_1/P0\\0_1_7_p0', 'e:\\FLESH_ContinuousBodilyEffort\\02_MotionTracking_processing\\projectdata\\Session_0_1/P0\\0_1_19_p0', 'e:\\FLESH_ContinuousBodilyEffort\\02_MotionTracking_processing\\projectdata\\Session_0_1/P0\\0_1_20_p0', 'e:\\FLESH_ContinuousBodilyEffort\\02_MotionTracking_processing\\projectdata\\Session_0_1/P0\\0_1_21_p0']
Custom functions
def load_toml(file_path):
    with open(file_path, 'r') as file:
        return toml.load(file)

def save_toml(data, file_path):
    with open(file_path, 'w') as file:
        toml.dump(data, file)

def update_participant_info(toml_data, height, mass):
    if 'markerAugmentation' in toml_data:
        toml_data['markerAugmentation']['participant_height'] = height
        toml_data['markerAugmentation']['participant_mass'] = mass
    else:
        raise KeyError("The key 'markerAugmentation' is not present in the TOML data.")
    return toml_data

def saveFrame_fromVideo(framepick, output_dir, input_video):    

    cap = cv2.VideoCapture(input_video)
            
    # check if the video file was opened successfully
    if not cap.isOpened():
        print("Error: Couldn't open the video file.")
        exit()
    
               
    frame_count = 0
    while True:
    # read the next frame
        ret, frame = cap.read()
        if not ret:
            break  # break the loop if we reach the end of the video
            
        frame_count += 1

        # save every n-th frame
        if frame_count % framepick == 0:
            frame_filename = f"{output_dir}frame_{frame_count}.png"
            cv2.imwrite(frame_filename, frame, [cv2.IMWRITE_PNG_COMPRESSION, 0])

    # release the video capture object and close the video file
    cap.release()
    cv2.destroyAllWindows()

The Pose2sim pipeline comes in three steps: - calibration - triangulation - filtering

In calibration, we will use the calibration videos with checkerboard to calibrate the intrinsic and extrinsic parameters of the cameras. Note that we calibrate intrinsic parameters only once, and copy the file to the rest of the sessions. Extrinsic parameters are calibrated for each session (in part 1, and copied into part 2)

As noted in the Pose2sim documentation, intrinsic error should be below 0.5 pixels, and extrinsic error should be below 1 cm (but acceptable until 2.5 cm)

Note that extrinsic are sometimes not automatically detected so the corners need to be annotated manually.

In triangulation, we will use the keypoints extracted in the previous script to triangulate the 3D position of the keypoints. The output will be a 3D position for each keypoint in each frame.

In filtering, we will filter the 3D position of the keypoints to remove noise and outliers with the in-build Butterworth filter (order 4, cut-off frequency 10 Hz).

Refer to the Config.toml file in ’2Sim_project_FLESH_settings\’ for the configuration of the pipeline.

There are additional three steps available in Pose2sim that we will not utilize in this script - synchronization, person association, and marker augmentation.

# Set framerate
framerate = 60

# How many x-th frame do we extract from the calibration video? 
framepick = 3

# Copy a folder in pose2simprjfolder and its contents to folders
source1 = pose2simprjfolder+'/Config.toml'
source2 = pose2simprjfolder+'/opensim/'


for i in folderstotrack:
    os.chdir(i)

    sessionID = i.split('\\')[-1].split('_')[1]

    # First we need to prepare Config.file to all levels of folders (plus opensim to P0 and P1)

    # Copy to session folder
    shutil.copy(source1, i + '/')

    input_toml = load_toml(i+'/Config.toml')

    # Update the p0 info
    mass_p0 = META.loc[(META['session'] == int(sessionID)) & (META['pcn'] == 'p0'), 'weight'].values[0]
    height_p0 = META.loc[(META['session'] == int(sessionID)) & (META['pcn'] == 'p0'), 'height'].values[0]
    updated_toml_p0 = update_participant_info(input_toml, height_p0, mass_p0)

    # Update p1 info
    mass_p1 = META.loc[(META['session'] == int(sessionID)) & (META['pcn'] == 'p1'), 'weight'].values[0]
    height_p1 = META.loc[(META['session'] == int(sessionID)) & (META['pcn'] == 'p1'), 'height'].values[0]
    updated_toml_p1 = update_participant_info(input_toml, height_p1, mass_p1)
    
    # Save the updated TOML data
    save_toml(updated_toml_p0, i+'/P0/Config.toml')
    save_toml(updated_toml_p1, i+'/P1/Config.toml')

    p0_source = i+'/P0/Config.toml'
    p1_source = i+'/P1/Config.toml'

    # Copy necessary files 
    for j in pcnfolders:
        if 'P0' in j:
            shutil.copy(p0_source, j + '/')
            print('source = ' + source1 + ' to destination: ' + j+'/')

        if 'P1' in j:
            shutil.copy(p1_source, j + '/')
            print('source = ' + source1 + ' to destination: ' + j+'/')

    if not os.path.exists(i+'/P0/opensim/'):
        shutil.copytree(source2, i+'/P0/opensim/')
        print('source = ' + source2 + ' to destination: ' + i+'/P0/opensim/')

    if not os.path.exists(i+'/P1/opensim/'):
        shutil.copytree(source2, i+'/P1/opensim/')
        print('source = ' + source2 + ' to destination: ' + i+'/P1/opensim/')

    # Now we calibrate
    print('Step: Calibration')

    # Calibrate only if there is no toml file in the calibration folder
    if not os.path.exists(i+'/calibration/Calib_board.toml'):
        print('Calibration file not found')
        
        # Now we prepare images from calibration videos
        calib_folders = glob.glob(i+'/calibration/*/*')

        for c in calib_folders:
            print(c)
            split = c.split(os.path.sep)
            camIndex = split[-1]
            # Extrinsic calibration
            if 'extrinsics' in c:
                input_video = c+'/'+ sessionID +'_checker_extrinsics_'+camIndex+'.avi' 
            # Intrinsic
            else:
                input_video = c+'/'+ sessionID +'_checker_intrinsics_'+camIndex+'.avi'

            output_dir = c + '/'
            
            print('We are now saving frames extracted from calibration videos')
            saveFrame_fromVideo(framepick, output_dir, input_video)
    
        print('Calibration file does not exist, calibrating...')
        Pose2Sim.calibration() 

        # Get the last element of the i
        split = i.split(os.path.sep)
        parts = split[-1].split('_')
        # Get the sessionID
        session_id = parts[1]
        session_part = parts[-1]

        # If session_part is 1, we copy trc and calib file to the session that has some id, but part 2
        if session_part == '1':
            # Copy the calibration file to the session with the same id, but part 2
            copy_to_part = '2'
            # Get the new folder name
            new_folder = 'Session_'+session_id+'_'+copy_to_part
            # Get the new folder path
            new_folder_path = inputfolder + new_folder
            # In new_folder_path, create folder calibration if it doesn't exist
            if not os.path.exists(new_folder_path+'\\calibration\\'):
                os.makedirs(new_folder_path+'\\calibration\\')
            
            # Get the calibration file path
            calib_file = i + '/calibration/Calib_board.toml'
            # Get the trc file path
            trc_file = i + '/calibration/Object_points.trc'
            
            # Copy the files to the new folder
            shutil.copy(calib_file, new_folder_path + '/calibration/')
            shutil.copy(trc_file, new_folder_path + '/calibration/')
        
        # Part 2 does not need to be calibrated so we can just proceed
        else:
            continue

    # If calibration file exists, then we can skip calibration
    else:
        print('Calibration file found, no need to calibrate')
    
    # Camera synchronization (our cameras are natively synchronized so we do not need this step)
    #print('Step: synchronization')
    #Pose2Sim.synchronization()

    # Person association if there is more people in a video
    #print('Step: person association')
    #Pose2Sim.personAssociation()

    # Prepare special log txt
    error_log = curfolder + '/error_log.txt'

    try:
        print('Step: triangulation')
        Pose2Sim.triangulation()
    except:
        print('Triangulation failed')
        with open(error_log, 'a') as f:
            f.write(f'Triangulation failed for {j}\n')

        continue

    try:
        print('Step: filtering')
        Pose2Sim.filtering()
    except:
        print('Filtering failed')
        # Print the folder
        with open(error_log, 'a') as f:
            f.write(f'Filtering failed for {j}\n')

        continue

    # Marker augmentation (note that this works only with model 25)
    #print('Step: marker augmentation')
    #Pose2Sim.markerAugmentation()

Note that all output errors per each trial are saved in logs.txt file in projectdata/Session_x

Because the output files are in .trc format, we also want to convert them to .csv to have more convenient format for later processing

trctoconvert = []

for j in pcnfolders:
    # Here we store the 3D pose data
    posefolder = '/pose-3d/'
    # Check any .trc files in the folder
    trcfiles = glob.glob(j+posefolder + '*.trc')
    #print(trcfiles)
    
    # Append
    trctoconvert = trctoconvert + trcfiles

# Loop through files and convert to csv
for file in trctoconvert:
    print(file)
    # There is a mistake in LSTM files formatting (those are output of marker augmentation), se we want to skip them
    if 'LSTM' not in file:
        mocap_data = TRCData()
        mocap_data.load(os.path.abspath(file))
        num_frames = mocap_data['NumFrames']
        markernames = mocap_data['Markers'] # the marker names are not

        # Convert mocap_data to pandas dataframe
        mocap_data_df = pd.DataFrame(mocap_data, columns=mocap_data['Markers'])
        # Each value within the dataframe consists a list of x,y,z coordinates, we want to seperate these out so that each marker and dimension has its own column
        colnames = []
        for marker in markernames:
            colnames.append(marker + '_x')
            colnames.append(marker + '_y')
            colnames.append(marker + '_z')

        # Create a new DataFrame to store separated values
        new_df = pd.DataFrame()

        # Iterate through each column in the original DataFrame
        for column in mocap_data_df.columns:
            # Extract the x, y, z values from each cell
            xyz = mocap_data_df[column].tolist()
            # Create a new DataFrame with the values in the cell separated into their own columns
            xyz_df = pd.DataFrame(xyz, columns=[column + '_x', column + '_y', column + '_z'])
            # Add the new columns to the new DataFrame
            new_df = pd.concat([new_df, xyz_df], axis=1)

        # Add a new time column to the new dataframe assuming the framerate was 60 fps
        time = []
        ts = 0
        for i in range(0, int(num_frames)):
            ts = ts + 1/framerate
            time.append(ts)

        # Add the time column to the new dataframe
        new_df['Time'] = time

        # Write pd dataframe to csv
        new_df.to_csv(file+'.csv', index=False)

    else:
        continue
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_tpose_p0/pose-3d\0_1_tpose_p0_0-197.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_tpose_p0/pose-3d\0_1_tpose_p0_0-197_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_0_p0/pose-3d\0_1_0_p0_0-299.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_0_p0/pose-3d\0_1_0_p0_0-299_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_3_p0/pose-3d\0_1_3_p0_0-533.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_3_p0/pose-3d\0_1_3_p0_0-533_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_4_p0/pose-3d\0_1_4_p0_0-276.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_4_p0/pose-3d\0_1_4_p0_0-276_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_5_p0/pose-3d\0_1_5_p0_0-175.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_5_p0/pose-3d\0_1_5_p0_0-175_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_6_p0/pose-3d\0_1_6_p0_0-223.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_6_p0/pose-3d\0_1_6_p0_0-223_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_7_p0/pose-3d\0_1_7_p0_0-226.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_7_p0/pose-3d\0_1_7_p0_0-226_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_19_p0/pose-3d\0_1_19_p0_0-352.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_19_p0/pose-3d\0_1_19_p0_0-352_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_20_p0/pose-3d\0_1_20_p0_0-232.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_20_p0/pose-3d\0_1_20_p0_0-232_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_21_p0/pose-3d\0_1_21_p0_0-215.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_21_p0/pose-3d\0_1_21_p0_0-215_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_22_p0/pose-3d\0_1_22_p0_0-274.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_22_p0/pose-3d\0_1_22_p0_0-274_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_23_p0/pose-3d\0_1_23_p0_0-231.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_23_p0/pose-3d\0_1_23_p0_0-231_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_24_p0/pose-3d\0_1_24_p0_0-342.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_24_p0/pose-3d\0_1_24_p0_0-342_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_25_p0/pose-3d\0_1_25_p0_0-370.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_25_p0/pose-3d\0_1_25_p0_0-370_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_26_p0/pose-3d\0_1_26_p0_0-249.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_26_p0/pose-3d\0_1_26_p0_0-249_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_36_p0/pose-3d\0_1_36_p0_0-295.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_36_p0/pose-3d\0_1_36_p0_0-295_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_37_p0/pose-3d\0_1_37_p0_0-238.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_37_p0/pose-3d\0_1_37_p0_0-238_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_38_p0/pose-3d\0_1_38_p0_0-322.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_38_p0/pose-3d\0_1_38_p0_0-322_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_39_p0/pose-3d\0_1_39_p0_0-427.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_39_p0/pose-3d\0_1_39_p0_0-427_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_40_p0/pose-3d\0_1_40_p0_0-182.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_40_p0/pose-3d\0_1_40_p0_0-182_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_41_p0/pose-3d\0_1_41_p0_0-364.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_41_p0/pose-3d\0_1_41_p0_0-364_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_42_p0/pose-3d\0_1_42_p0_0-265.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_42_p0/pose-3d\0_1_42_p0_0-265_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_43_p0/pose-3d\0_1_43_p0_0-253.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_43_p0/pose-3d\0_1_43_p0_0-253_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_44_p0/pose-3d\0_1_44_p0_0-333.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_44_p0/pose-3d\0_1_44_p0_0-333_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_1_p0/pose-3d\0_1_1_p0_0-139.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_1_p0/pose-3d\0_1_1_p0_0-139_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_18_p0/pose-3d\0_1_18_p0_0-389.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_18_p0/pose-3d\0_1_18_p0_0-389_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_2_p0/pose-3d\0_1_2_p0_0-165.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_2_p0/pose-3d\0_1_2_p0_0-165_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_8_p0/pose-3d\0_1_8_p0_0-170.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P0\0_1_8_p0/pose-3d\0_1_8_p0_0-170_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_tpose_p1/pose-3d\0_1_tpose_p1_0-236.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_tpose_p1/pose-3d\0_1_tpose_p1_0-236_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_11_p1/pose-3d\0_1_11_p1_0-187.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_11_p1/pose-3d\0_1_11_p1_0-187_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_12_p1/pose-3d\0_1_12_p1_0-218.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_12_p1/pose-3d\0_1_12_p1_0-218_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_13_p1/pose-3d\0_1_13_p1_0-202.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_13_p1/pose-3d\0_1_13_p1_0-202_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_14_p1/pose-3d\0_1_14_p1_0-306.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_14_p1/pose-3d\0_1_14_p1_0-306_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_15_p1/pose-3d\0_1_15_p1_0-239.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_15_p1/pose-3d\0_1_15_p1_0-239_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_16_p1/pose-3d\0_1_16_p1_0-211.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_16_p1/pose-3d\0_1_16_p1_0-211_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_17_p1/pose-3d\0_1_17_p1_0-255.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_17_p1/pose-3d\0_1_17_p1_0-255_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_27_p1/pose-3d\0_1_27_p1_0-361.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_27_p1/pose-3d\0_1_27_p1_0-361_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_28_p1/pose-3d\0_1_28_p1_0-279.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_28_p1/pose-3d\0_1_28_p1_0-279_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_29_p1/pose-3d\0_1_29_p1_0-261.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_29_p1/pose-3d\0_1_29_p1_0-261_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_30_p1/pose-3d\0_1_30_p1_0-226.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_30_p1/pose-3d\0_1_30_p1_0-226_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_31_p1/pose-3d\0_1_31_p1_0-230.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_31_p1/pose-3d\0_1_31_p1_0-230_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_32_p1/pose-3d\0_1_32_p1_0-299.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_32_p1/pose-3d\0_1_32_p1_0-299_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_33_p1/pose-3d\0_1_33_p1_0-333.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_33_p1/pose-3d\0_1_33_p1_0-333_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_34_p1/pose-3d\0_1_34_p1_0-240.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_34_p1/pose-3d\0_1_34_p1_0-240_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_35_p1/pose-3d\0_1_35_p1_0-310.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_35_p1/pose-3d\0_1_35_p1_0-310_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_45_p1/pose-3d\0_1_45_p1_0-261.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_45_p1/pose-3d\0_1_45_p1_0-261_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_46_p1/pose-3d\0_1_46_p1_0-339.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_46_p1/pose-3d\0_1_46_p1_0-339_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_47_p1/pose-3d\0_1_47_p1_0-350.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_47_p1/pose-3d\0_1_47_p1_0-350_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_48_p1/pose-3d\0_1_48_p1_0-353.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_48_p1/pose-3d\0_1_48_p1_0-353_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_49_p1/pose-3d\0_1_49_p1_0-225.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_49_p1/pose-3d\0_1_49_p1_0-225_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_50_p1/pose-3d\0_1_50_p1_0-292.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_50_p1/pose-3d\0_1_50_p1_0-292_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_51_p1/pose-3d\0_1_51_p1_0-232.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_51_p1/pose-3d\0_1_51_p1_0-232_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_52_p1/pose-3d\0_1_52_p1_0-423.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_52_p1/pose-3d\0_1_52_p1_0-423_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_53_p1/pose-3d\0_1_53_p1_0-279.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_53_p1/pose-3d\0_1_53_p1_0-279_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_10_p1/pose-3d\0_1_10_p1_0-318.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_10_p1/pose-3d\0_1_10_p1_0-318_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_9_p1/pose-3d\0_1_9_p1_0-324.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1/P1\0_1_9_p1/pose-3d\0_1_9_p1_0-324_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_0_p0/pose-3d\0_2_0_p0_0-188.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_0_p0/pose-3d\0_2_0_p0_0-188_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_1_p0/pose-3d\0_2_1_p0_0-222.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_1_p0/pose-3d\0_2_1_p0_0-222_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_2_p0/pose-3d\0_2_2_p0_0-403.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_2_p0/pose-3d\0_2_2_p0_0-403_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_3_p0/pose-3d\0_2_3_p0_0-153.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_3_p0/pose-3d\0_2_3_p0_0-153_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_4_p0/pose-3d\0_2_4_p0_0-600.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_4_p0/pose-3d\0_2_4_p0_0-600_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_5_p0/pose-3d\0_2_5_p0_0-179.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_5_p0/pose-3d\0_2_5_p0_0-179_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_6_p0/pose-3d\0_2_6_p0_0-318.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_6_p0/pose-3d\0_2_6_p0_0-318_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_7_p0/pose-3d\0_2_7_p0_0-472.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_7_p0/pose-3d\0_2_7_p0_0-472_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_8_p0/pose-3d\0_2_8_p0_0-189.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_8_p0/pose-3d\0_2_8_p0_0-189_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_9_p0/pose-3d\0_2_9_p0_0-232.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_9_p0/pose-3d\0_2_9_p0_0-232_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_10_p0/pose-3d\0_2_10_p0_0-347.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_10_p0/pose-3d\0_2_10_p0_0-347_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_11_p0/pose-3d\0_2_11_p0_0-329.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_11_p0/pose-3d\0_2_11_p0_0-329_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_12_p0/pose-3d\0_2_12_p0_0-364.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_12_p0/pose-3d\0_2_12_p0_0-364_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_13_p0/pose-3d\0_2_13_p0_0-319.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_13_p0/pose-3d\0_2_13_p0_0-319_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_14_p0/pose-3d\0_2_14_p0_0-391.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_14_p0/pose-3d\0_2_14_p0_0-391_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_15_p0/pose-3d\0_2_15_p0_0-182.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_15_p0/pose-3d\0_2_15_p0_0-182_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_16_p0/pose-3d\0_2_16_p0_0-218.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_16_p0/pose-3d\0_2_16_p0_0-218_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_17_p0/pose-3d\0_2_17_p0_0-274.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_17_p0/pose-3d\0_2_17_p0_0-274_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_18_p0/pose-3d\0_2_18_p0_0-448.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_18_p0/pose-3d\0_2_18_p0_0-448_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_38_p0/pose-3d\0_2_38_p0_0-469.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_38_p0/pose-3d\0_2_38_p0_0-469_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_39_p0/pose-3d\0_2_39_p0_0-407.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_39_p0/pose-3d\0_2_39_p0_0-407_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_40_p0/pose-3d\0_2_40_p0_0-367.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_40_p0/pose-3d\0_2_40_p0_0-367_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_41_p0/pose-3d\0_2_41_p0_0-291.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_41_p0/pose-3d\0_2_41_p0_0-291_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_42_p0/pose-3d\0_2_42_p0_0-395.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_42_p0/pose-3d\0_2_42_p0_0-395_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_43_p0/pose-3d\0_2_43_p0_0-352.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_43_p0/pose-3d\0_2_43_p0_0-352_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_44_p0/pose-3d\0_2_44_p0_0-364.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_44_p0/pose-3d\0_2_44_p0_0-364_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_45_p0/pose-3d\0_2_45_p0_0-340.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_45_p0/pose-3d\0_2_45_p0_0-340_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_46_p0/pose-3d\0_2_46_p0_0-437.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_46_p0/pose-3d\0_2_46_p0_0-437_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_47_p0/pose-3d\0_2_47_p0_0-225.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_47_p0/pose-3d\0_2_47_p0_0-225_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_48_p0/pose-3d\0_2_48_p0_0-323.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_48_p0/pose-3d\0_2_48_p0_0-323_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_49_p0/pose-3d\0_2_49_p0_0-204.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_49_p0/pose-3d\0_2_49_p0_0-204_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_50_p0/pose-3d\0_2_50_p0_0-332.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_50_p0/pose-3d\0_2_50_p0_0-332_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_51_p0/pose-3d\0_2_51_p0_0-426.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_51_p0/pose-3d\0_2_51_p0_0-426_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_52_p0/pose-3d\0_2_52_p0_0-452.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_52_p0/pose-3d\0_2_52_p0_0-452_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_67_p0/pose-3d\0_2_67_p0_0-205.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_67_p0/pose-3d\0_2_67_p0_0-205_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_68_p0/pose-3d\0_2_68_p0_0-297.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_68_p0/pose-3d\0_2_68_p0_0-297_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_69_p0/pose-3d\0_2_69_p0_0-338.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_69_p0/pose-3d\0_2_69_p0_0-338_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_70_p0/pose-3d\0_2_70_p0_0-455.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_70_p0/pose-3d\0_2_70_p0_0-455_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_71_p0/pose-3d\0_2_71_p0_0-246.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_71_p0/pose-3d\0_2_71_p0_0-246_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_72_p0/pose-3d\0_2_72_p0_0-301.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_72_p0/pose-3d\0_2_72_p0_0-301_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_73_p0/pose-3d\0_2_73_p0_0-320.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_73_p0/pose-3d\0_2_73_p0_0-320_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_74_p0/pose-3d\0_2_74_p0_0-302.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_74_p0/pose-3d\0_2_74_p0_0-302_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_75_p0/pose-3d\0_2_75_p0_0-320.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_75_p0/pose-3d\0_2_75_p0_0-320_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_76_p0/pose-3d\0_2_76_p0_0-224.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_76_p0/pose-3d\0_2_76_p0_0-224_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_77_p0/pose-3d\0_2_77_p0_0-272.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_77_p0/pose-3d\0_2_77_p0_0-272_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_78_p0/pose-3d\0_2_78_p0_0-257.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_78_p0/pose-3d\0_2_78_p0_0-257_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_79_p0/pose-3d\0_2_79_p0_0-254.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_79_p0/pose-3d\0_2_79_p0_0-254_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_80_p0/pose-3d\0_2_80_p0_0-204.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_80_p0/pose-3d\0_2_80_p0_0-204_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_81_p0/pose-3d\0_2_81_p0_0-248.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_81_p0/pose-3d\0_2_81_p0_0-248_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_82_p0/pose-3d\0_2_82_p0_0-317.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_82_p0/pose-3d\0_2_82_p0_0-317_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_83_p0/pose-3d\0_2_83_p0_0-333.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_83_p0/pose-3d\0_2_83_p0_0-333_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_84_p0/pose-3d\0_2_84_p0_0-302.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_84_p0/pose-3d\0_2_84_p0_0-302_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_85_p0/pose-3d\0_2_85_p0_0-249.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_85_p0/pose-3d\0_2_85_p0_0-249_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_86_p0/pose-3d\0_2_86_p0_0-221.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_86_p0/pose-3d\0_2_86_p0_0-221_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_87_p0/pose-3d\0_2_87_p0_0-221.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_87_p0/pose-3d\0_2_87_p0_0-221_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_88_p0/pose-3d\0_2_88_p0_0-176.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_88_p0/pose-3d\0_2_88_p0_0-176_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_89_p0/pose-3d\0_2_89_p0_0-333.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_89_p0/pose-3d\0_2_89_p0_0-333_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_90_p0/pose-3d\0_2_90_p0_0-234.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_90_p0/pose-3d\0_2_90_p0_0-234_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_91_p0/pose-3d\0_2_91_p0_0-188.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P0\0_2_91_p0/pose-3d\0_2_91_p0_0-188_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_19_p1/pose-3d\0_2_19_p1_0-263.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_19_p1/pose-3d\0_2_19_p1_0-263_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_20_p1/pose-3d\0_2_20_p1_0-268.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_20_p1/pose-3d\0_2_20_p1_0-268_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_21_p1/pose-3d\0_2_21_p1_0-280.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_21_p1/pose-3d\0_2_21_p1_0-280_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_22_p1/pose-3d\0_2_22_p1_0-398.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_22_p1/pose-3d\0_2_22_p1_0-398_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_23_p1/pose-3d\0_2_23_p1_0-300.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_23_p1/pose-3d\0_2_23_p1_0-300_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_24_p1/pose-3d\0_2_24_p1_0-312.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_24_p1/pose-3d\0_2_24_p1_0-312_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_25_p1/pose-3d\0_2_25_p1_0-307.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_25_p1/pose-3d\0_2_25_p1_0-307_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_26_p1/pose-3d\0_2_26_p1_0-332.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_26_p1/pose-3d\0_2_26_p1_0-332_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_27_p1/pose-3d\0_2_27_p1_0-352.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_27_p1/pose-3d\0_2_27_p1_0-352_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_28_p1/pose-3d\0_2_28_p1_0-363.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_28_p1/pose-3d\0_2_28_p1_0-363_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_29_p1/pose-3d\0_2_29_p1_0-262.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_29_p1/pose-3d\0_2_29_p1_0-262_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_30_p1/pose-3d\0_2_30_p1_0-332.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_30_p1/pose-3d\0_2_30_p1_0-332_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_31_p1/pose-3d\0_2_31_p1_0-433.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_31_p1/pose-3d\0_2_31_p1_0-433_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_32_p1/pose-3d\0_2_32_p1_0-300.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_32_p1/pose-3d\0_2_32_p1_0-300_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_33_p1/pose-3d\0_2_33_p1_0-220.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_33_p1/pose-3d\0_2_33_p1_0-220_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_34_p1/pose-3d\0_2_34_p1_0-242.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_34_p1/pose-3d\0_2_34_p1_0-242_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_35_p1/pose-3d\0_2_35_p1_0-327.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_35_p1/pose-3d\0_2_35_p1_0-327_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_36_p1/pose-3d\0_2_36_p1_0-256.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_36_p1/pose-3d\0_2_36_p1_0-256_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_37_p1/pose-3d\0_2_37_p1_0-391.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_37_p1/pose-3d\0_2_37_p1_0-391_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_53_p1/pose-3d\0_2_53_p1_0-405.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_53_p1/pose-3d\0_2_53_p1_0-405_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_54_p1/pose-3d\0_2_54_p1_0-445.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_54_p1/pose-3d\0_2_54_p1_0-445_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_55_p1/pose-3d\0_2_55_p1_0-499.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_55_p1/pose-3d\0_2_55_p1_0-499_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_56_p1/pose-3d\0_2_56_p1_0-210.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_56_p1/pose-3d\0_2_56_p1_0-210_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_57_p1/pose-3d\0_2_57_p1_0-316.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_57_p1/pose-3d\0_2_57_p1_0-316_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_58_p1/pose-3d\0_2_58_p1_0-320.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_58_p1/pose-3d\0_2_58_p1_0-320_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_59_p1/pose-3d\0_2_59_p1_0-321.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_59_p1/pose-3d\0_2_59_p1_0-321_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_60_p1/pose-3d\0_2_60_p1_0-205.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_60_p1/pose-3d\0_2_60_p1_0-205_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_61_p1/pose-3d\0_2_61_p1_0-183.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_61_p1/pose-3d\0_2_61_p1_0-183_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_62_p1/pose-3d\0_2_62_p1_0-323.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_62_p1/pose-3d\0_2_62_p1_0-323_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_63_p1/pose-3d\0_2_63_p1_0-436.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_63_p1/pose-3d\0_2_63_p1_0-436_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_64_p1/pose-3d\0_2_64_p1_0-461.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_64_p1/pose-3d\0_2_64_p1_0-461_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_65_p1/pose-3d\0_2_65_p1_0-257.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_65_p1/pose-3d\0_2_65_p1_0-257_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_66_p1/pose-3d\0_2_66_p1_0-382.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_66_p1/pose-3d\0_2_66_p1_0-382_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_92_p1/pose-3d\0_2_92_p1_0-255.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_92_p1/pose-3d\0_2_92_p1_0-255_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_93_p1/pose-3d\0_2_93_p1_0-312.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_93_p1/pose-3d\0_2_93_p1_0-312_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_94_p1/pose-3d\0_2_94_p1_0-267.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_94_p1/pose-3d\0_2_94_p1_0-267_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_95_p1/pose-3d\0_2_95_p1_0-359.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_95_p1/pose-3d\0_2_95_p1_0-359_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_96_p1/pose-3d\0_2_96_p1_0-360.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_96_p1/pose-3d\0_2_96_p1_0-360_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_97_p1/pose-3d\0_2_97_p1_0-391.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_97_p1/pose-3d\0_2_97_p1_0-391_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_98_p1/pose-3d\0_2_98_p1_0-323.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_98_p1/pose-3d\0_2_98_p1_0-323_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_99_p1/pose-3d\0_2_99_p1_0-371.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_99_p1/pose-3d\0_2_99_p1_0-371_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_100_p1/pose-3d\0_2_100_p1_0-400.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_100_p1/pose-3d\0_2_100_p1_0-400_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_101_p1/pose-3d\0_2_101_p1_0-211.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_101_p1/pose-3d\0_2_101_p1_0-211_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_102_p1/pose-3d\0_2_102_p1_0-307.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_102_p1/pose-3d\0_2_102_p1_0-307_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_103_p1/pose-3d\0_2_103_p1_0-409.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_103_p1/pose-3d\0_2_103_p1_0-409_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_104_p1/pose-3d\0_2_104_p1_0-251.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_104_p1/pose-3d\0_2_104_p1_0-251_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_105_p1/pose-3d\0_2_105_p1_0-237.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_105_p1/pose-3d\0_2_105_p1_0-237_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_106_p1/pose-3d\0_2_106_p1_0-202.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_106_p1/pose-3d\0_2_106_p1_0-202_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_107_p1/pose-3d\0_2_107_p1_0-342.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_107_p1/pose-3d\0_2_107_p1_0-342_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_108_p1/pose-3d\0_2_108_p1_0-313.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_108_p1/pose-3d\0_2_108_p1_0-313_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_109_p1/pose-3d\0_2_109_p1_0-369.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_109_p1/pose-3d\0_2_109_p1_0-369_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_110_p1/pose-3d\0_2_110_p1_0-388.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_110_p1/pose-3d\0_2_110_p1_0-388_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_111_p1/pose-3d\0_2_111_p1_0-344.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_111_p1/pose-3d\0_2_111_p1_0-344_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_112_p1/pose-3d\0_2_112_p1_0-290.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_112_p1/pose-3d\0_2_112_p1_0-290_filt_butterworth.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_113_p1/pose-3d\0_2_113_p1_0-273.trc
e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2/P1\0_2_113_p1/pose-3d\0_2_113_p1_0-273_filt_butterworth.trc

Here is an animation of the keypoints plotted in 3D space.

Well be looking at the following file: e:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0\pose-3d\0_1_18_p0_0-389_filt_butterworth.trc.csv

Note that here we see that the Y and Z axis are flipped. We will therefore need to adjust the columns in script (ADDREFF?).

This is the raw video that it corresponds to

Now let’s get information about the intrinsic and extrinsic error for each trial. The error log is saved in logs.txt file in the first session of the list that we have processed, here Session_0_1.

log = curfolder + '/projectdata/Session_0_1/logs.txt'


# Load in as a txt file
with open(log, 'r') as f:
    print(f.read())


---------------------------------------------------------------------
Camera calibration
On Tuesday 10. December 2024, 18:00:46
---------------------------------------------------------------------

Calibration directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\calibration

Calculating intrinsic parameters...

Camera cam1:
frame_3.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_6.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_9.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_12.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_15.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_18.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_21.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_24.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_27.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_30.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_33.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_36.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_39.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_42.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_45.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_48.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_51.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_54.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_57.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_60.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_63.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_66.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_69.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_72.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_75.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_78.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_81.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_84.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_87.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_90.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_93.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_96.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_99.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_102.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_105.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_108.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_111.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_114.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_117.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_120.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_123.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_126.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_129.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_132.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_135.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_138.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_141.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_144.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_147.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_150.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_153.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_156.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_159.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_162.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_165.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_168.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_171.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_174.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_177.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_180.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_183.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_186.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_189.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_192.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_195.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_198.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_201.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_204.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_207.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_210.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_213.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_216.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_219.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_222.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_225.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_228.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_231.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_234.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_237.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_240.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_243.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_246.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_249.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_252.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_255.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_258.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_261.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_264.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_267.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_270.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_273.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_276.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_279.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_282.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_285.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_288.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_291.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_294.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_297.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_300.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_303.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_306.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_309.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_312.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_315.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_318.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_321.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_324.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_327.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_330.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_333.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_336.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_339.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_342.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_345.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_348.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_351.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_354.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_357.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_360.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_363.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_366.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_369.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_372.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_375.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_378.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_381.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_384.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_387.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_390.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_393.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_396.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_399.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_402.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_405.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_408.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_411.png: Corners found.
frame_414.png: Corners found.
frame_417.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_420.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_423.png: Corners found.
frame_426.png: Corners found.
frame_429.png: Corners found.
frame_432.png: Corners found.
frame_435.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_438.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_441.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_444.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_447.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_450.png: Corners found.
frame_453.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_456.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_459.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_462.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_465.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_468.png: Corners found.
frame_471.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_474.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_477.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_480.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_483.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_486.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_489.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_492.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_495.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_498.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_501.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_504.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_507.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_510.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_513.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_516.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_519.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_522.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_525.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_528.png: Corners found.
frame_531.png: Corners found.
frame_534.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_537.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_540.png: Corners found.
frame_543.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_546.png: Corners found.
frame_549.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_552.png: Corners found.
frame_555.png: Corners found.
frame_558.png: Corners found.
frame_561.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_564.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_567.png: Corners found.
frame_570.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_573.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_576.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_579.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_582.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_585.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_588.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_591.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_594.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_597.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_600.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_603.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_606.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_609.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_612.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_615.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_618.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_621.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_624.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_627.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_630.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_633.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_636.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_639.png: Corners found.
frame_642.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_645.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_648.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_651.png: Corners found.
frame_654.png: Corners found.
frame_657.png: Corners found.
frame_660.png: Corners found.
frame_663.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_666.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_669.png: Corners found.
frame_672.png: Corners found.
frame_675.png: Corners found.
frame_678.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_681.png: Corners found.
frame_684.png: Corners found.
frame_687.png: Corners found.
frame_690.png: Corners found.
frame_693.png: Corners found.
frame_696.png: Corners found.
frame_699.png: Corners found.
frame_702.png: Corners found.
frame_705.png: Corners found.
frame_708.png: Corners found.
frame_711.png: Corners found.
frame_714.png: Corners found.
frame_717.png: Corners found.
frame_720.png: Corners found.
frame_723.png: Corners found.
frame_726.png: Corners found.
frame_729.png: Corners found.
frame_732.png: Corners found.
frame_735.png: Corners found.
frame_738.png: Corners found.
frame_741.png: Corners found.
frame_744.png: Corners found.
frame_747.png: Corners found.
frame_750.png: Corners found.
frame_753.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_756.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_759.png: Corners found.
frame_762.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_765.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_768.png: Corners found.
frame_771.png: Corners found.
frame_774.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_777.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_780.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_783.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_786.png: Corners found.
frame_789.png: Corners found.
frame_792.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_795.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_798.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_801.png: Corners found.
frame_804.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_807.png: Corners found.
frame_810.png: Corners found.
frame_813.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_816.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_819.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_822.png: Corners found.
frame_825.png: Corners found.
frame_828.png: Corners found.
frame_831.png: Corners found.
frame_834.png: Corners found.
frame_837.png: Corners found.
frame_840.png: Corners found.
frame_843.png: Corners found.
frame_846.png: Corners found.
frame_849.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_852.png: Corners found.
frame_855.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_858.png: Corners found.
frame_861.png: Corners found.
frame_864.png: Corners found.
frame_867.png: Corners found.
frame_870.png: Corners found.
frame_873.png: Corners found.
frame_876.png: Corners found.
frame_879.png: Corners found.
frame_882.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_885.png: Corners found.
frame_888.png: Corners found.
frame_891.png: Corners found.
frame_894.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_897.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_900.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_903.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_906.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_909.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_912.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_915.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_918.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_921.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_924.png: Corners found.
frame_927.png: Corners found.
frame_930.png: Corners found.
frame_933.png: Corners found.
frame_936.png: Corners found.
frame_939.png: Corners found.
frame_942.png: Corners found.
frame_945.png: Corners found.
frame_948.png: Corners found.
frame_951.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_954.png: Corners found.
frame_957.png: Corners found.
frame_960.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_963.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_966.png: Corners found.
frame_969.png: Corners found.
frame_972.png: Corners found.
frame_975.png: Corners found.
frame_978.png: Corners found.
frame_981.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_984.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_987.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_990.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_993.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_996.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_999.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1002.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1005.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1008.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1011.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1014.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1017.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1020.png: Corners found.
frame_1023.png: Corners found.
frame_1026.png: Corners found.
frame_1029.png: Corners found.
frame_1032.png: Corners found.
frame_1035.png: Corners found.
frame_1038.png: Corners found.
frame_1041.png: Corners found.
frame_1044.png: Corners found.
frame_1047.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1050.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1053.png: Corners found.
frame_1056.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1059.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1062.png: Corners found.
frame_1065.png: Corners found.
frame_1068.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1071.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1074.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1077.png: Corners found.
frame_1080.png: Corners found.
frame_1083.png: Corners found.
frame_1086.png: Corners found.
frame_1089.png: Corners found.
frame_1092.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1095.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1098.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1101.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1104.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1107.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1110.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1113.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1116.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1119.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1122.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1125.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1128.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1131.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1134.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1137.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1140.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1143.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1146.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1149.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1152.png: Corners found.
frame_1155.png: Corners found.
frame_1158.png: Corners found.
frame_1161.png: Corners found.
frame_1164.png: Corners found.
frame_1167.png: Corners found.
frame_1170.png: Corners found.
frame_1173.png: Corners found.
frame_1176.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1179.png: Corners found.
frame_1182.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1185.png: Corners found.
frame_1188.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1191.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1194.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1197.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1200.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1203.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1206.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1209.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1212.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1215.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1218.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1221.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1224.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1227.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1230.png: Corners found.
frame_1233.png: Corners found.
frame_1236.png: Corners found.
frame_1239.png: Corners found.
frame_1242.png: Corners found.
frame_1245.png: Corners found.
frame_1248.png: Corners found.
frame_1251.png: Corners found.
frame_1254.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1257.png: Corners found.
frame_1260.png: Corners found.
frame_1263.png: Corners found.
frame_1266.png: Corners found.
frame_1269.png: Corners found.
frame_1272.png: Corners found.
frame_1275.png: Corners found.
frame_1278.png: Corners found.
frame_1281.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1284.png: Corners found.
frame_1287.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1290.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1293.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1296.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1299.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1302.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1305.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1308.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1311.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1314.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1317.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1320.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1323.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1326.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1329.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1332.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1335.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1338.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1341.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1344.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1347.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1350.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1353.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1356.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1359.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1362.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1365.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1368.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1371.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1374.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1377.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1380.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1383.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1386.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1389.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1392.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1395.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1398.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1401.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1404.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1407.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1410.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1413.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1416.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1419.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1422.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1425.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1428.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1431.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1434.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1437.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1440.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1443.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1446.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1449.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1452.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1455.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1458.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1461.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1464.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1467.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1470.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1473.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1476.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1479.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1482.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1485.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1488.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1491.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1494.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1497.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1500.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1503.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1506.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1509.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1512.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1515.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1518.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1521.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1524.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1527.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1530.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1533.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1536.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1539.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1542.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1545.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1548.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1551.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1554.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1557.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1560.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1563.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1566.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1569.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1572.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1575.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1578.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1581.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1584.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1587.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1590.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1593.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1596.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1599.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1602.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1605.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1608.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1611.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1614.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1617.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1620.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1623.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1626.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1629.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1632.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1635.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1638.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1641.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1644.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1647.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1650.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1653.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1656.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1659.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1662.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1665.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1668.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1671.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1674.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1677.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1680.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1683.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1686.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1689.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1692.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1695.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1698.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1701.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1704.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1707.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1710.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1713.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1716.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1719.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1722.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1725.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1728.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1731.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1734.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1737.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1740.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1743.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1746.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1749.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1752.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1755.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1758.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1761.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1764.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1767.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1770.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1773.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1776.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1779.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1782.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1785.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1788.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1791.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1794.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1797.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1800.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1803.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1806.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1809.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1812.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1815.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1818.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1821.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1824.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1827.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1830.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1833.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1836.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1839.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1842.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1845.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1848.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1851.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1854.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1857.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1860.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1863.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1866.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1869.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1872.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1875.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1878.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1881.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1884.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1887.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1890.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1893.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1896.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1899.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1902.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1905.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1908.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1911.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1914.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1917.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1920.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1923.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1926.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1929.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1932.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1935.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1938.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1941.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1944.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1947.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1950.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1953.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1956.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1959.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1962.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1965.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1968.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1971.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1974.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1977.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1980.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1983.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1986.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1989.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1992.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1995.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1998.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2001.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2004.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2007.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2010.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2013.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2016.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2019.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2022.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2025.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2028.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2031.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2034.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2037.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2040.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2043.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2046.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2049.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2052.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2055.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2058.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2061.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2064.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2067.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2070.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2073.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2076.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2079.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2082.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2085.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2088.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2091.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2094.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2097.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2100.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2103.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2106.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2109.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2112.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2115.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2118.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2121.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2124.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2127.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2130.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2133.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2136.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2139.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2142.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2145.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2148.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2151.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2154.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2157.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2160.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2163.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2166.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2169.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2172.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2175.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2178.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2181.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2184.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2187.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2190.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2193.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2196.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2199.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2202.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2205.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2208.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2211.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2214.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2217.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2220.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2223.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2226.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2229.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2232.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2235.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2238.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2241.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2244.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2247.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2250.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2253.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2256.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2259.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2262.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2265.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2268.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2271.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2274.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2277.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2280.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2283.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2286.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2289.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2292.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2295.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2298.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2301.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2304.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2307.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2310.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2313.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2316.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2319.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2322.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2325.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2328.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2331.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2334.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2337.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2340.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2343.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2346.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2349.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2352.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2355.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2358.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2361.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2364.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2367.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2370.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2373.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2376.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2379.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2382.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2385.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2388.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2391.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2394.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2397.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2400.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2403.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2406.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2409.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2412.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2415.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2418.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2421.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2424.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2427.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2430.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2433.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2436.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2439.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2442.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2445.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2448.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2451.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2454.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2457.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2460.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2463.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2466.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2469.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2472.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2475.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2478.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2481.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2484.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2487.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2490.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2493.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2496.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2499.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2502.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2505.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2508.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2511.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2514.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2517.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2520.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2523.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2526.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2529.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2532.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2535.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2538.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2541.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2544.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2547.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2550.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2553.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2556.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2559.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2562.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2565.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2568.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2571.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2574.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2577.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2580.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2583.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2586.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2589.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2592.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2595.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2598.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2601.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2604.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2607.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2610.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2613.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2616.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2619.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2622.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2625.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2628.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2631.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2634.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2637.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2640.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2643.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2646.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2649.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2652.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2655.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2658.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2661.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2664.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2667.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2670.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2673.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2676.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2679.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2682.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2685.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2688.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2691.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2694.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2697.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2700.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2703.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2706.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2709.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2712.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2715.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2718.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2721.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2724.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2727.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2730.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2733.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2736.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2739.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2742.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2745.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2748.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2751.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2754.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2757.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2760.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2763.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2766.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2769.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2772.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2775.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2778.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2781.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2784.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2787.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2790.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2793.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2796.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2799.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2802.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2805.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2808.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2811.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2814.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2817.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2820.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2823.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2826.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2829.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2832.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2835.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2838.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2841.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2844.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2847.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2850.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2853.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2856.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2859.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2862.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2865.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2868.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2871.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2874.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2877.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2880.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2883.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2886.png: Corners found.
frame_2889.png: Corners found.
frame_2892.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2895.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2898.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2901.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2904.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2907.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2910.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2913.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2916.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2919.png: Corners found.
frame_2922.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2925.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2928.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2931.png: Corners found.
frame_2934.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2937.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2940.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2943.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2946.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2949.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2952.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2955.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2958.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2961.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2964.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2967.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2970.png: Corners found.
frame_2973.png: Corners found.
frame_2976.png: Corners found.
frame_2979.png: Corners found.
frame_2982.png: Corners found.
frame_2985.png: Corners found.
frame_2988.png: Corners found.
frame_2991.png: Corners found.
frame_2994.png: Corners found.
frame_2997.png: Corners found.
frame_3000.png: Corners found.
frame_3003.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3006.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3009.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3012.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3015.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3018.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3021.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3024.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3027.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3030.png: Corners found.
frame_3033.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3036.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3039.png: Corners found.
frame_3042.png: Corners found.
frame_3045.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3048.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3051.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3054.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3057.png: Corners found.
frame_3060.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3063.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3066.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3069.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3072.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3075.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3078.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3081.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3084.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3087.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3090.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3093.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3096.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3099.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3102.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3105.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3108.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3111.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3114.png: Corners found.
frame_3117.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3120.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3123.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3126.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3129.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3132.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3135.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3138.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3141.png: Corners found.
frame_3144.png: Corners found.
frame_3147.png: Corners found.
frame_3150.png: Corners found.
frame_3153.png: Corners found.
frame_3156.png: Corners found.
frame_3159.png: Corners found.
frame_3162.png: Corners found.
frame_3165.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3168.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3171.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3174.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3177.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3180.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3183.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3186.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3189.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3192.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3195.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3198.png: Corners found.
frame_3201.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3204.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3207.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3210.png: Corners found.
frame_3213.png: Corners found.
frame_3216.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3219.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3222.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3225.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3228.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3231.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3234.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3237.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3240.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3243.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3246.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3249.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3252.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3255.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3258.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3261.png: Corners found.
frame_3264.png: Corners found.
frame_3267.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3270.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3273.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3276.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3279.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3282.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3285.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3288.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3291.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3294.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3297.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3300.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3303.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3306.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3309.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3312.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3315.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3318.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3321.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3324.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3327.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3330.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3333.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3336.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3339.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3342.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3345.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3348.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3351.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3354.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3357.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3360.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3363.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3366.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3369.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3372.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3375.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3378.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3381.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3384.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3387.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3390.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3393.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3396.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3399.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3402.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3405.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3408.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3411.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3414.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3417.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3420.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3423.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3426.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3429.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3432.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3435.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3438.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3441.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3444.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3447.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3450.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3453.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3456.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3459.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3462.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3465.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3468.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3471.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3474.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3477.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3480.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3483.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3486.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3489.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3492.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3495.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3498.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3501.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3504.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3507.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3510.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3513.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3516.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3519.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3522.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3525.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3528.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3531.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3534.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3537.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3540.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3543.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3546.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3549.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3552.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3555.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3558.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3561.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3564.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3567.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3570.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3573.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3576.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3579.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3582.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3585.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3588.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3591.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3594.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3597.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3600.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3603.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3606.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3609.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3612.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3615.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3618.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3621.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3624.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3627.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3630.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3633.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3636.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3639.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3642.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3645.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3648.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3651.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3654.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3657.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3660.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3663.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3666.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3669.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3672.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3675.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3678.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3681.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3684.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3687.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3690.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3693.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3696.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3699.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3702.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3705.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3708.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3711.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3714.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3717.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3720.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3723.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3726.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3729.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3732.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3735.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3738.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3741.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3744.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3747.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3750.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3753.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3756.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3759.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3762.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3765.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3768.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3771.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3774.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3777.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
Intrinsics error: 0.372 px for each cameras.

Camera cam2:
frame_3.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_6.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_9.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_12.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_15.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_18.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_21.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_24.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_27.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_30.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_33.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_36.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_39.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_42.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_45.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_48.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_51.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_54.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_57.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_60.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_63.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_66.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_69.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_72.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_75.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_78.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_81.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_84.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_87.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_90.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_93.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_96.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_99.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_102.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_105.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_108.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_111.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_114.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_117.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_120.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_123.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_126.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_129.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_132.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_135.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_138.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_141.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_144.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_147.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_150.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_153.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_156.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_159.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_162.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_165.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_168.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_171.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_174.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_177.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_180.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_183.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_186.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_189.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_192.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_195.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_198.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_201.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_204.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_207.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_210.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_213.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_216.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_219.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_222.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_225.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_228.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_231.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_234.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_237.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_240.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_243.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_246.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_249.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_252.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_255.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_258.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_261.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_264.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_267.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_270.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_273.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_276.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_279.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_282.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_285.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_288.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_291.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_294.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_297.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_300.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_303.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_306.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_309.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_312.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_315.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_318.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_321.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_324.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_327.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_330.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_333.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_336.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_339.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_342.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_345.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_348.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_351.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_354.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_357.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_360.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_363.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_366.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_369.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_372.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_375.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_378.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_381.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_384.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_387.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_390.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_393.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_396.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_399.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_402.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_405.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_408.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_411.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_414.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_417.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_420.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_423.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_426.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_429.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_432.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_435.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_438.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_441.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_444.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_447.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_450.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_453.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_456.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_459.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_462.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_465.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_468.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_471.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_474.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_477.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_480.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_483.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_486.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_489.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_492.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_495.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_498.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_501.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_504.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_507.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_510.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_513.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_516.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_519.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_522.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_525.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_528.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_531.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_534.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_537.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_540.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_543.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_546.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_549.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_552.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_555.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_558.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_561.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_564.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_567.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_570.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_573.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_576.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_579.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_582.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_585.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_588.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_591.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_594.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_597.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_600.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_603.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_606.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_609.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_612.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_615.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_618.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_621.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_624.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_627.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_630.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_633.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_636.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_639.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_642.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_645.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_648.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_651.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_654.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_657.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_660.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_663.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_666.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_669.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_672.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_675.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_678.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_681.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_684.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_687.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_690.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_693.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_696.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_699.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_702.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_705.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_708.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_711.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_714.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_717.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_720.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_723.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_726.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_729.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_732.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_735.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_738.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_741.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_744.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_747.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_750.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_753.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_756.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_759.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_762.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_765.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_768.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_771.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_774.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_777.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_780.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_783.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_786.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_789.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_792.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_795.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_798.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_801.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_804.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_807.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_810.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_813.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_816.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_819.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_822.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_825.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_828.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_831.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_834.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_837.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_840.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_843.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_846.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_849.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_852.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_855.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_858.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_861.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_864.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_867.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_870.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_873.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_876.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_879.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_882.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_885.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_888.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_891.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_894.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_897.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_900.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_903.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_906.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_909.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_912.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_915.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_918.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_921.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_924.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_927.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_930.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_933.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_936.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_939.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_942.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_945.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_948.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_951.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_954.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_957.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_960.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_963.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_966.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_969.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_972.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_975.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_978.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_981.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_984.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_987.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_990.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_993.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_996.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_999.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1002.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1005.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1008.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1011.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1014.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1017.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1020.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1023.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1026.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1029.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1032.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1035.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1038.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1041.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1044.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1047.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1050.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1053.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1056.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1059.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1062.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1065.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1068.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1071.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1074.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1077.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1080.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1083.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1086.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1089.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1092.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1095.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1098.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1101.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1104.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1107.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1110.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1113.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1116.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1119.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1122.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1125.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1128.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1131.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1134.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1137.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1140.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1143.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1146.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1149.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1152.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1155.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1158.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1161.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1164.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1167.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1170.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1173.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1176.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1179.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1182.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1185.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1188.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1191.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1194.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1197.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1200.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1203.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1206.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1209.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1212.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1215.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1218.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1221.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1224.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1227.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1230.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1233.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1236.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1239.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1242.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1245.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1248.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1251.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1254.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1257.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1260.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1263.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1266.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1269.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1272.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1275.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1278.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1281.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1284.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1287.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1290.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1293.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1296.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1299.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1302.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1305.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1308.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1311.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1314.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1317.png: Corners found.
frame_1320.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1323.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1326.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1329.png: Corners found.
frame_1332.png: Corners found.
frame_1335.png: Corners found.
frame_1338.png: Corners found.
frame_1341.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1344.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1347.png: Corners found.
frame_1350.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1353.png: Corners found.
frame_1356.png: Corners found.
frame_1359.png: Corners found.
frame_1362.png: Corners found.
frame_1365.png: Corners found.
frame_1368.png: Corners found.
frame_1371.png: Corners found.
frame_1374.png: Corners found.
frame_1377.png: Corners found.
frame_1380.png: Corners found.
frame_1383.png: Corners found.
frame_1386.png: Corners found.
frame_1389.png: Corners found.
frame_1392.png: Corners found.
frame_1395.png: Corners found.
frame_1398.png: Corners found.
frame_1401.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1404.png: Corners found.
frame_1407.png: Corners found.
frame_1410.png: Corners found.
frame_1413.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1416.png: Corners found.
frame_1419.png: Corners found.
frame_1422.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1425.png: Corners found.
frame_1428.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1431.png: Corners found.
frame_1434.png: Corners found.
frame_1437.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1440.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1443.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1446.png: Corners found.
frame_1449.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1452.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1455.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1458.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1461.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1464.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1467.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1470.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1473.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1476.png: Corners found.
frame_1479.png: Corners found.
frame_1482.png: Corners found.
frame_1485.png: Corners found.
frame_1488.png: Corners found.
frame_1491.png: Corners found.
frame_1494.png: Corners found.
frame_1497.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1500.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1503.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1506.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1509.png: Corners found.
frame_1512.png: Corners found.
frame_1515.png: Corners found.
frame_1518.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1521.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1524.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1527.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1530.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1533.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1536.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1539.png: Corners found.
frame_1542.png: Corners found.
frame_1545.png: Corners found.
frame_1548.png: Corners found.
frame_1551.png: Corners found.
frame_1554.png: Corners found.
frame_1557.png: Corners found.
frame_1560.png: Corners found.
frame_1563.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1566.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1569.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1572.png: Corners found.
frame_1575.png: Corners found.
frame_1578.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1581.png: Corners found.
frame_1584.png: Corners found.
frame_1587.png: Corners found.
frame_1590.png: Corners found.
frame_1593.png: Corners found.
frame_1596.png: Corners found.
frame_1599.png: Corners found.
frame_1602.png: Corners found.
frame_1605.png: Corners found.
frame_1608.png: Corners found.
frame_1611.png: Corners found.
frame_1614.png: Corners found.
frame_1617.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1620.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1623.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1626.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1629.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1632.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1635.png: Corners found.
frame_1638.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1641.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1644.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1647.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1650.png: Corners found.
frame_1653.png: Corners found.
frame_1656.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1659.png: Corners found.
frame_1662.png: Corners found.
frame_1665.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1668.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1671.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1674.png: Corners found.
frame_1677.png: Corners found.
frame_1680.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1683.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1686.png: Corners found.
frame_1689.png: Corners found.
frame_1692.png: Corners found.
frame_1695.png: Corners found.
frame_1698.png: Corners found.
frame_1701.png: Corners found.
frame_1704.png: Corners found.
frame_1707.png: Corners found.
frame_1710.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1713.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1716.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1719.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1722.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1725.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1728.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1731.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1734.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1737.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1740.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1743.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1746.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1749.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1752.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1755.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1758.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1761.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1764.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1767.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1770.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1773.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1776.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1779.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1782.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1785.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1788.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1791.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1794.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1797.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1800.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1803.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1806.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1809.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1812.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1815.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1818.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1821.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1824.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1827.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1830.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1833.png: Corners found.
frame_1836.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1839.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1842.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1845.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1848.png: Corners found.
frame_1851.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1854.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1857.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1860.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1863.png: Corners found.
frame_1866.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1869.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1872.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1875.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1878.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1881.png: Corners found.
frame_1884.png: Corners found.
frame_1887.png: Corners found.
frame_1890.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1893.png: Corners found.
frame_1896.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1899.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1902.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1905.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1908.png: Corners found.
frame_1911.png: Corners found.
frame_1914.png: Corners found.
frame_1917.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1920.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1923.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1926.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1929.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1932.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1935.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1938.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1941.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1944.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1947.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1950.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1953.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1956.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1959.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1962.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1965.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1968.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1971.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1974.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1977.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1980.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1983.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1986.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1989.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1992.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1995.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1998.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2001.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2004.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2007.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2010.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2013.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2016.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2019.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2022.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2025.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2028.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2031.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2034.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2037.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2040.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2043.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2046.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2049.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2052.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2055.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2058.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2061.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2064.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2067.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2070.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2073.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2076.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2079.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2082.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2085.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2088.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2091.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2094.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2097.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2100.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2103.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2106.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2109.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2112.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2115.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2118.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2121.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2124.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2127.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2130.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2133.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2136.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2139.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2142.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2145.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2148.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2151.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2154.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2157.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2160.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2163.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2166.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2169.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2172.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2175.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2178.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2181.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2184.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2187.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2190.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2193.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2196.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2199.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2202.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2205.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2208.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2211.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2214.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2217.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2220.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2223.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2226.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2229.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2232.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2235.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2238.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2241.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2244.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2247.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2250.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2253.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2256.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2259.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2262.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2265.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2268.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2271.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2274.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2277.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2280.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2283.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2286.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2289.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2292.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2295.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2298.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2301.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2304.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2307.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2310.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2313.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2316.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2319.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2322.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2325.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2328.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2331.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2334.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2337.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2340.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2343.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2346.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2349.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2352.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2355.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2358.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2361.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2364.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2367.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2370.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2373.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2376.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2379.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2382.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2385.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2388.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2391.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2394.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2397.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2400.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2403.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2406.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2409.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2412.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2415.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2418.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2421.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2424.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2427.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2430.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2433.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2436.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2439.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2442.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2445.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2448.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2451.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2454.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2457.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2460.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2463.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2466.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2469.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2472.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2475.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2478.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2481.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2484.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2487.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2490.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2493.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2496.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2499.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2502.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2505.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2508.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2511.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2514.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2517.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2520.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2523.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2526.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2529.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2532.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2535.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2538.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2541.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2544.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2547.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2550.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2553.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2556.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2559.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2562.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2565.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2568.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2571.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2574.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2577.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2580.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2583.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2586.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2589.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2592.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2595.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2598.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2601.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2604.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2607.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2610.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2613.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2616.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2619.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2622.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2625.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2628.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2631.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2634.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2637.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2640.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2643.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2646.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2649.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2652.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2655.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2658.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2661.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2664.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2667.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2670.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2673.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2676.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2679.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2682.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2685.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2688.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2691.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2694.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2697.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2700.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2703.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2706.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2709.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2712.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2715.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2718.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2721.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2724.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2727.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2730.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2733.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2736.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2739.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2742.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2745.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2748.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2751.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2754.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2757.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2760.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2763.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2766.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2769.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2772.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2775.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2778.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2781.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2784.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2787.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2790.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2793.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2796.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2799.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2802.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2805.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2808.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2811.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2814.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2817.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2820.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2823.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2826.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2829.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2832.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2835.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2838.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2841.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2844.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2847.png: Corners found.
frame_2850.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2853.png: Corners found.
frame_2856.png: Corners found.
frame_2859.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2862.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2865.png: Corners found.
frame_2868.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2871.png: Corners found.
frame_2874.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2877.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2880.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2883.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2886.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2889.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2892.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2895.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2898.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2901.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2904.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2907.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2910.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2913.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2916.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2919.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2922.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2925.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2928.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2931.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2934.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2937.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2940.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2943.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2946.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2949.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2952.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2955.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2958.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2961.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2964.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2967.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2970.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2973.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2976.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2979.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2982.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2985.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2988.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2991.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2994.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2997.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3000.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3003.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3006.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3009.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3012.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3015.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3018.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3021.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3024.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3027.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3030.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3033.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3036.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3039.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3042.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3045.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3048.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3051.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3054.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3057.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3060.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3063.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3066.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3069.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3072.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3075.png: Corners found.
frame_3078.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3081.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3084.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3087.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3090.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3093.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3096.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3099.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3102.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3105.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3108.png: Corners found.
frame_3111.png: Corners found.
frame_3114.png: Corners found.
frame_3117.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3120.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3123.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3126.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3129.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3132.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3135.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3138.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3141.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3144.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3147.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3150.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3153.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3156.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3159.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3162.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3165.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3168.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3171.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3174.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3177.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3180.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3183.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3186.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3189.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3192.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3195.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3198.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3201.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3204.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3207.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3210.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3213.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3216.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3219.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3222.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3225.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3228.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3231.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3234.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3237.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3240.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3243.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3246.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3249.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3252.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3255.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3258.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3261.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3264.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3267.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3270.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3273.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3276.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3279.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3282.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3285.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3288.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3291.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3294.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3297.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3300.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3303.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3306.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3309.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3312.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3315.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3318.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3321.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3324.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3327.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3330.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3333.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3336.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3339.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3342.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3345.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3348.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3351.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3354.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3357.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3360.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3363.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3366.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3369.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3372.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3375.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3378.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3381.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3384.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3387.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3390.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3393.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3396.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3399.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3402.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3405.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3408.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3411.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3414.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3417.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3420.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3423.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3426.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3429.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3432.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3435.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3438.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3441.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3444.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3447.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3450.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3453.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3456.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3459.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3462.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3465.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3468.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3471.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3474.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3477.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3480.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3483.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3486.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3489.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3492.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3495.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3498.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3501.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3504.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3507.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3510.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3513.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3516.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3519.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3522.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3525.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3528.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3531.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3534.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3537.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3540.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3543.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3546.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3549.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3552.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3555.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3558.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3561.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3564.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3567.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3570.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3573.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3576.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3579.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3582.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3585.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3588.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3591.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3594.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3597.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3600.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3603.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3606.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3609.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3612.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3615.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3618.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3621.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3624.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3627.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3630.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3633.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3636.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3639.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3642.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3645.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3648.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3651.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3654.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3657.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3660.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3663.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3666.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3669.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3672.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3675.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3678.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3681.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3684.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3687.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3690.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3693.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3696.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3699.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3702.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3705.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3708.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3711.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3714.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3717.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3720.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3723.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3726.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3729.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3732.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3735.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3738.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3741.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3744.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3747.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3750.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3753.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3756.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3759.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3762.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3765.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3768.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3771.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3774.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3777.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
Intrinsics error: 0.225 px for each cameras.

Camera cam3:
frame_3.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_6.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_9.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_12.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_15.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_18.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_21.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_24.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_27.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_30.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_33.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_36.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_39.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_42.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_45.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_48.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_51.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_54.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_57.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_60.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_63.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_66.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_69.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_72.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_75.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_78.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_81.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_84.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_87.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_90.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_93.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_96.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_99.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_102.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_105.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_108.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_111.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_114.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_117.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_120.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_123.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_126.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_129.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_132.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_135.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_138.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_141.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_144.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_147.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_150.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_153.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_156.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_159.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_162.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_165.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_168.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_171.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_174.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_177.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_180.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_183.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_186.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_189.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_192.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_195.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_198.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_201.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_204.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_207.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_210.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_213.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_216.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_219.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_222.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_225.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_228.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_231.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_234.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_237.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_240.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_243.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_246.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_249.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_252.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_255.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_258.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_261.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_264.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_267.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_270.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_273.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_276.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_279.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_282.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_285.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_288.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_291.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_294.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_297.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_300.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_303.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_306.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_309.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_312.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_315.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_318.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_321.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_324.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_327.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_330.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_333.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_336.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_339.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_342.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_345.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_348.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_351.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_354.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_357.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_360.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_363.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_366.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_369.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_372.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_375.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_378.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_381.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_384.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_387.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_390.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_393.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_396.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_399.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_402.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_405.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_408.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_411.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_414.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_417.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_420.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_423.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_426.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_429.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_432.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_435.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_438.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_441.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_444.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_447.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_450.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_453.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_456.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_459.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_462.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_465.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_468.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_471.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_474.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_477.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_480.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_483.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_486.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_489.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_492.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_495.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_498.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_501.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_504.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_507.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_510.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_513.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_516.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_519.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_522.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_525.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_528.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_531.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_534.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_537.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_540.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_543.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_546.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_549.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_552.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_555.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_558.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_561.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_564.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_567.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_570.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_573.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_576.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_579.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_582.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_585.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_588.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_591.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_594.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_597.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_600.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_603.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_606.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_609.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_612.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_615.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_618.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_621.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_624.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_627.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_630.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_633.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_636.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_639.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_642.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_645.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_648.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_651.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_654.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_657.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_660.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_663.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_666.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_669.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_672.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_675.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_678.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_681.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_684.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_687.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_690.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_693.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_696.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_699.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_702.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_705.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_708.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_711.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_714.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_717.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_720.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_723.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_726.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_729.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_732.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_735.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_738.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_741.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_744.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_747.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_750.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_753.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_756.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_759.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_762.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_765.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_768.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_771.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_774.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_777.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_780.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_783.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_786.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_789.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_792.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_795.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_798.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_801.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_804.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_807.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_810.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_813.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_816.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_819.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_822.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_825.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_828.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_831.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_834.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_837.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_840.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_843.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_846.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_849.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_852.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_855.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_858.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_861.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_864.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_867.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_870.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_873.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_876.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_879.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_882.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_885.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_888.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_891.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_894.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_897.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_900.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_903.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_906.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_909.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_912.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_915.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_918.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_921.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_924.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_927.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_930.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_933.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_936.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_939.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_942.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_945.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_948.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_951.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_954.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_957.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_960.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_963.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_966.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_969.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_972.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_975.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_978.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_981.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_984.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_987.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_990.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_993.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_996.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_999.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1002.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1005.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1008.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1011.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1014.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1017.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1020.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1023.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1026.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1029.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1032.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1035.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1038.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1041.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1044.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1047.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1050.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1053.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1056.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1059.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1062.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1065.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1068.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1071.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1074.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1077.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1080.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1083.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1086.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1089.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1092.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1095.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1098.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1101.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1104.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1107.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1110.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1113.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1116.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1119.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1122.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1125.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1128.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1131.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1134.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1137.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1140.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1143.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1146.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1149.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1152.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1155.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1158.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1161.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1164.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1167.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1170.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1173.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1176.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1179.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1182.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1185.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1188.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1191.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1194.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1197.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1200.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1203.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1206.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1209.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1212.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1215.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1218.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1221.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1224.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1227.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1230.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1233.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1236.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1239.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1242.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1245.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1248.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1251.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1254.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1257.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1260.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1263.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1266.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1269.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1272.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1275.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1278.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1281.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1284.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1287.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1290.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1293.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1296.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1299.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1302.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1305.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1308.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1311.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1314.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1317.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1320.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1323.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1326.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1329.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1332.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1335.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1338.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1341.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1344.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1347.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1350.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1353.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1356.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1359.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1362.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1365.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1368.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1371.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1374.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1377.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1380.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1383.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1386.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1389.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1392.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1395.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1398.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1401.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1404.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1407.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1410.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1413.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1416.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1419.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1422.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1425.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1428.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1431.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1434.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1437.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1440.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1443.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1446.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1449.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1452.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1455.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1458.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1461.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1464.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1467.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1470.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1473.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1476.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1479.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1482.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1485.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1488.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1491.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1494.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1497.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1500.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1503.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1506.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1509.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1512.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1515.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1518.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1521.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1524.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1527.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1530.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1533.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1536.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1539.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1542.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1545.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1548.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1551.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1554.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1557.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1560.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1563.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1566.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1569.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1572.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1575.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1578.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1581.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1584.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1587.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1590.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1593.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1596.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1599.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1602.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1605.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1608.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1611.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1614.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1617.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1620.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1623.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1626.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1629.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1632.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1635.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1638.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1641.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1644.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1647.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1650.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1653.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1656.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1659.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1662.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1665.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1668.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1671.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1674.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1677.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1680.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1683.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1686.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1689.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1692.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1695.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1698.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1701.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1704.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1707.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1710.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1713.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1716.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1719.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1722.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1725.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1728.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1731.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1734.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1737.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1740.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1743.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1746.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1749.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1752.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1755.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1758.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1761.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1764.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1767.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1770.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1773.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1776.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1779.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1782.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1785.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1788.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1791.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1794.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1797.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1800.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1803.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1806.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1809.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1812.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1815.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1818.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1821.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1824.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1827.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1830.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1833.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1836.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1839.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1842.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1845.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1848.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1851.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1854.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1857.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1860.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1863.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1866.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1869.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1872.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1875.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1878.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1881.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1884.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1887.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1890.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1893.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1896.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1899.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1902.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1905.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1908.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1911.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1914.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1917.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1920.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1923.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1926.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1929.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1932.png: Corners found.
frame_1935.png: Corners found.
frame_1938.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1941.png: Corners found.
frame_1944.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1947.png: Corners found.
frame_1950.png: Corners found.
frame_1953.png: Corners found.
frame_1956.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1959.png: Corners found.
frame_1962.png: Corners found.
frame_1965.png: Corners found.
frame_1968.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1971.png: Corners found.
frame_1974.png: Corners found.
frame_1977.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1980.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1983.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1986.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1989.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1992.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1995.png: Corners found.
frame_1998.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2001.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2004.png: Corners found.
frame_2007.png: Corners found.
frame_2010.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2013.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2016.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2019.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2022.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2025.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2028.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2031.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2034.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2037.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2040.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2043.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2046.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2049.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2052.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2055.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2058.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2061.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2064.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2067.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2070.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2073.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2076.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2079.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2082.png: Corners found.
frame_2085.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2088.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2091.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2094.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2097.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2100.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2103.png: Corners found.
frame_2106.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2109.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2112.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2115.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2118.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2121.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2124.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2127.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2130.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2133.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2136.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2139.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2142.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2145.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2148.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2151.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2154.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2157.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2160.png: Corners found.
frame_2163.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2166.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2169.png: Corners found.
frame_2172.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2175.png: Corners found.
frame_2178.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2181.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2184.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2187.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2190.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2193.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2196.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2199.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2202.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2205.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2208.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2211.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2214.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2217.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2220.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2223.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2226.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2229.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2232.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2235.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2238.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2241.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2244.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2247.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2250.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2253.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2256.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2259.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2262.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2265.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2268.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2271.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2274.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2277.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2280.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2283.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2286.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2289.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2292.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2295.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2298.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2301.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2304.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2307.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2310.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2313.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2316.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2319.png: Corners found.
frame_2322.png: Corners found.
frame_2325.png: Corners found.
frame_2328.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2331.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2334.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2337.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2340.png: Corners found.
frame_2343.png: Corners found.
frame_2346.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2349.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2352.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2355.png: Corners found.
frame_2358.png: Corners found.
frame_2361.png: Corners found.
frame_2364.png: Corners found.
frame_2367.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2370.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2373.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2376.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2379.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2382.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2385.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2388.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2391.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2394.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2397.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2400.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2403.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2406.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2409.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2412.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2415.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2418.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2421.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2424.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2427.png: Corners found.
frame_2430.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2433.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2436.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2439.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2442.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2445.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2448.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2451.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2454.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2457.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2460.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2463.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2466.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2469.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2472.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2475.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2478.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2481.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2484.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2487.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2490.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2493.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2496.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2499.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2502.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2505.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2508.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2511.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2514.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2517.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2520.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2523.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2526.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2529.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2532.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2535.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2538.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2541.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2544.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2547.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2550.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2553.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2556.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2559.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2562.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2565.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2568.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2571.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2574.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2577.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2580.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2583.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2586.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2589.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2592.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2595.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2598.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2601.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2604.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2607.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2610.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2613.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2616.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2619.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2622.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2625.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2628.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2631.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2634.png: Corners found.
frame_2637.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2640.png: Corners found.
frame_2643.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2646.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2649.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2652.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2655.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2658.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2661.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2664.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2667.png: Corners found.
frame_2670.png: Corners found.
frame_2673.png: Corners found.
frame_2676.png: Corners found.
frame_2679.png: Corners found.
frame_2682.png: Corners found.
frame_2685.png: Corners found.
frame_2688.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2691.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2694.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2697.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2700.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2703.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2706.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2709.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2712.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2715.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2718.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2721.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2724.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2727.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2730.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2733.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2736.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2739.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2742.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2745.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2748.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2751.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2754.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2757.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2760.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2763.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2766.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2769.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2772.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2775.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2778.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2781.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2784.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2787.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2790.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2793.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2796.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2799.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2802.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2805.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2808.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2811.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2814.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2817.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2820.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2823.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2826.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2829.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2832.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2835.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2838.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2841.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2844.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2847.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2850.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2853.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2856.png: Corners found.
frame_2859.png: Corners found.
frame_2862.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2865.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2868.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2871.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2874.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2877.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2880.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2883.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2886.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2889.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2892.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2895.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2898.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2901.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2904.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2907.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2910.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2913.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2916.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2919.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2922.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2925.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2928.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2931.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2934.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2937.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2940.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2943.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2946.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2949.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2952.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2955.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2958.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2961.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2964.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2967.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2970.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2973.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2976.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2979.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2982.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2985.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2988.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2991.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2994.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2997.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3000.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3003.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3006.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3009.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3012.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3015.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3018.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3021.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3024.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3027.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3030.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3033.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3036.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3039.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3042.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3045.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3048.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3051.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3054.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3057.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3060.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3063.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3066.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3069.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3072.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3075.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3078.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3081.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3084.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3087.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3090.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3093.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3096.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3099.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3102.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3105.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3108.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3111.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3114.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3117.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3120.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3123.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3126.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3129.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3132.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3135.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3138.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3141.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3144.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3147.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3150.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3153.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3156.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3159.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3162.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3165.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3168.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3171.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3174.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3177.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3180.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3183.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3186.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3189.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3192.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3195.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3198.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3201.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3204.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3207.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3210.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3213.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3216.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3219.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3222.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3225.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3228.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3231.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3234.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3237.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3240.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3243.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3246.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3249.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3252.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3255.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3258.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3261.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3264.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3267.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3270.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3273.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3276.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3279.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3282.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3285.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3288.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3291.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3294.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3297.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3300.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3303.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3306.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3309.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3312.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3315.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3318.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3321.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3324.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3327.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3330.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3333.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3336.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3339.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3342.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3345.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3348.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3351.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3354.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3357.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3360.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3363.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3366.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3369.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3372.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3375.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3378.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3381.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3384.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3387.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3390.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3393.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3396.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3399.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3402.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3405.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3408.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3411.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3414.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3417.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3420.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3423.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3426.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3429.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3432.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3435.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3438.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3441.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3444.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3447.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3450.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3453.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3456.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3459.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3462.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3465.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3468.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3471.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3474.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3477.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3480.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3483.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3486.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3489.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3492.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3495.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3498.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3501.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3504.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3507.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3510.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3513.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3516.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3519.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3522.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3525.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3528.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3531.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3534.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3537.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3540.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3543.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3546.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3549.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3552.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3555.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3558.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3561.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3564.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3567.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3570.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3573.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3576.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3579.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3582.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3585.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3588.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3591.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3594.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3597.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3600.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3603.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3606.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3609.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3612.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3615.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3618.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3621.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3624.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3627.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3630.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3633.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3636.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3639.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3642.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3645.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3648.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3651.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3654.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3657.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3660.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3663.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3666.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3669.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3672.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3675.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3678.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3681.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3684.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3687.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3690.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3693.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3696.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3699.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3702.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3705.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3708.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3711.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3714.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3717.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3720.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3723.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3726.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3729.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3732.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3735.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3738.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3741.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3744.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3747.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3750.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3753.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3756.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3759.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3762.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3765.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3768.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3771.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3774.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3777.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
Intrinsics error: 0.243 px for each cameras.

Calculating extrinsic parameters...

Camera cam1:
frame_3.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_tpose_p0, for all frames.
On Wednesday 11. December 2024, 08:06:21
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0

Mean reprojection error for RHip is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0\pose-3d\0_1_tpose_p0_0-197.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_0_p0, for all frames.
On Wednesday 11. December 2024, 08:06:22
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0\pose-3d\0_1_0_p0_0-299.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_3_p0, for all frames.
On Wednesday 11. December 2024, 08:06:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0\pose-3d\0_1_3_p0_0-533.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m04s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_4_p0, for all frames.
On Wednesday 11. December 2024, 08:06:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_4_p0

Mean reprojection error for RHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_4_p0\pose-3d\0_1_4_p0_0-276.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_5_p0, for all frames.
On Wednesday 11. December 2024, 08:06:31
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_5_p0

Mean reprojection error for RHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_5_p0\pose-3d\0_1_5_p0_0-175.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_6_p0, for all frames.
On Wednesday 11. December 2024, 08:06:33
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_6_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_6_p0\pose-3d\0_1_6_p0_0-223.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_7_p0, for all frames.
On Wednesday 11. December 2024, 08:06:34
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_7_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_7_p0\pose-3d\0_1_7_p0_0-226.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_19_p0, for all frames.
On Wednesday 11. December 2024, 08:06:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_19_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.8 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.9 px (~ 0.017 m), reached with 0.16 excluded cameras. 
  Frames 200 to 200 were interpolated.
Mean reprojection error for RIndex is 4.4 px (~ 0.019 m), reached with 0.3 excluded cameras. 
  Frames 118 to 118, 121 to 121, 123 to 123, 226 to 228, 233 to 233 were interpolated.
Mean reprojection error for RPinky is 4.2 px (~ 0.019 m), reached with 0.39 excluded cameras. 
  Frames 123 to 126, 132 to 133, 169 to 169, 197 to 197, 224 to 225, 234 to 236, 240 to 242 were interpolated.
Mean reprojection error for LShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.3 px (~ 0.015 m), reached with 0.26 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 4.5 px (~ 0.02 m), reached with 0.12 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.7 px (~ 0.021 m), reached with 0.41 excluded cameras. 
  Frames 98 to 98, 141 to 141, 177 to 178, 190 to 190, 192 to 193, 198 to 200, 216 to 217, 219 to 220, 225 to 225, 238 to 238, 243 to 246 were interpolated.
Mean reprojection error for LIndex is 4.1 px (~ 0.018 m), reached with 0.55 excluded cameras. 
  Frames 138 to 141, 148 to 152, 172 to 172, 174 to 177, 184 to 185, 190 to 190, 192 to 193, 198 to 200, 216 to 217, 219 to 221, 232 to 232, 238 to 238, 243 to 247 were interpolated.
Mean reprojection error for LPinky is 4.3 px (~ 0.019 m), reached with 0.47 excluded cameras. 
  Frames 138 to 141, 177 to 179, 204 to 204, 216 to 217, 219 to 222, 232 to 232, 238 to 238, 243 to 247 were interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.1 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 5% of the time, Camera cam3: 3%, and Camera cam2: 2%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_19_p0\pose-3d\0_1_19_p0_0-352.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_20_p0, for all frames.
On Wednesday 11. December 2024, 08:06:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_20_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.8 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.14 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 1% of the time, Camera cam3: 0%, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_20_p0\pose-3d\0_1_20_p0_0-232.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_21_p0, for all frames.
On Wednesday 11. December 2024, 08:06:41
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_21_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.6 px (~ 0.003 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.18 excluded cameras. 
  Frames 163 to 163, 168 to 168 were interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_21_p0\pose-3d\0_1_21_p0_0-215.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_22_p0, for all frames.
On Wednesday 11. December 2024, 08:06:43
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_22_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.3 px, which roughly corresponds to 10.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_22_p0\pose-3d\0_1_22_p0_0-274.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_23_p0, for all frames.
On Wednesday 11. December 2024, 08:06:45
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_23_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.7 px (~ 0.003 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.3 px, which roughly corresponds to 10.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_23_p0\pose-3d\0_1_23_p0_0-231.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_24_p0, for all frames.
On Wednesday 11. December 2024, 08:06:47
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_24_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_24_p0\pose-3d\0_1_24_p0_0-342.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_25_p0, for all frames.
On Wednesday 11. December 2024, 08:06:50
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_25_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 0.9 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.09 excluded cameras. 
  Frames 271 to 273, 278 to 278 were interpolated.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.12 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.05 excluded cameras. 
  Frames 258 to 258 were interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.8 px (~ 0.017 m), reached with 0.03 excluded cameras. 
  Frames 233 to 233 were interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 1% of the time, Camera cam1: 1%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_25_p0\pose-3d\0_1_25_p0_0-370.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_26_p0, for all frames.
On Wednesday 11. December 2024, 08:06:53
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_26_p0

Mean reprojection error for RHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_26_p0\pose-3d\0_1_26_p0_0-249.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_36_p0, for all frames.
On Wednesday 11. December 2024, 08:06:55
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_36_p0

Mean reprojection error for RHip is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 11.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_36_p0\pose-3d\0_1_36_p0_0-295.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_37_p0, for all frames.
On Wednesday 11. December 2024, 08:06:57
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_37_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.8 px (~ 0.021 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.5 px (~ 0.015 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_37_p0\pose-3d\0_1_37_p0_0-238.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_38_p0, for all frames.
On Wednesday 11. December 2024, 08:06:59
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_38_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.23 excluded cameras. 
  Frames 128 to 128, 213 to 213, 218 to 218, 225 to 226 were interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.17 excluded cameras. 
  Frames 131 to 131, 177 to 177, 179 to 179, 213 to 213, 224 to 224 were interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 1% of the time, Camera cam3: 1%, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_38_p0\pose-3d\0_1_38_p0_0-322.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_39_p0, for all frames.
On Wednesday 11. December 2024, 08:07:02
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_39_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.4 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.6 px (~ 0.016 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.3 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  Frames 258 to 259 were interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_39_p0\pose-3d\0_1_39_p0_0-427.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_40_p0, for all frames.
On Wednesday 11. December 2024, 08:07:05
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_40_p0

Mean reprojection error for RHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.6 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.4 px (~ 0.019 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.4 px (~ 0.019 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.9 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_40_p0\pose-3d\0_1_40_p0_0-182.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_41_p0, for all frames.
On Wednesday 11. December 2024, 08:07:07
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_41_p0

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.5 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_41_p0\pose-3d\0_1_41_p0_0-364.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_42_p0, for all frames.
On Wednesday 11. December 2024, 08:07:10
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_42_p0

Mean reprojection error for RHip is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.6 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.5 px (~ 0.011 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.8 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.3 px, which roughly corresponds to 10.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_42_p0\pose-3d\0_1_42_p0_0-265.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_43_p0, for all frames.
On Wednesday 11. December 2024, 08:07:12
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_43_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.5 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_43_p0\pose-3d\0_1_43_p0_0-253.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_44_p0, for all frames.
On Wednesday 11. December 2024, 08:07:14
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_44_p0

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.4 excluded cameras. 
  Frames 216 to 219 were interpolated.
Mean reprojection error for LWrist is 4.0 px (~ 0.018 m), reached with 0.44 excluded cameras. 
  Frames 102 to 103, 215 to 220, 236 to 236 were interpolated.
Mean reprojection error for LThumb is 3.8 px (~ 0.017 m), reached with 0.62 excluded cameras. 
  Frames 102 to 103, 110 to 110, 112 to 115, 117 to 123, 132 to 132, 136 to 136, 140 to 140, 142 to 144, 152 to 152, 158 to 158, 160 to 161, 173 to 174, 182 to 183, 198 to 205, 207 to 207, 210 to 210, 213 to 220, 228 to 228, 230 to 230, 234 to 235 were interpolated.
Mean reprojection error for LIndex is 3.9 px (~ 0.017 m), reached with 0.64 excluded cameras. 
  Frames 101 to 103, 107 to 107, 110 to 110, 117 to 118, 135 to 135, 146 to 146, 157 to 157, 161 to 161, 168 to 168, 173 to 173, 175 to 175, 178 to 183, 185 to 187, 189 to 189, 191 to 193, 203 to 204, 207 to 207, 210 to 210, 213 to 220, 229 to 231, 233 to 234, 237 to 238 were interpolated.
Mean reprojection error for LPinky is 4.3 px (~ 0.019 m), reached with 0.78 excluded cameras. 
  Frames 101 to 105, 113 to 113, 117 to 117, 120 to 123, 127 to 130, 144 to 144, 147 to 147, 161 to 170, 172 to 173, 192 to 193, 197 to 197, 204 to 207, 210 to 210, 230 to 239 were interpolated.
  Frames ['175:189', '213:226'] could not be interpolated: consider adjusting thresholds.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.11 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 7% of the time, Camera cam2: 2%, and Camera cam3: 2%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_44_p0\pose-3d\0_1_44_p0_0-333.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_1_p0, for all frames.
On Wednesday 11. December 2024, 08:07:17
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_1_p0

Mean reprojection error for RHip is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_1_p0\pose-3d\0_1_1_p0_0-139.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_18_p0, for all frames.
On Wednesday 11. December 2024, 08:07:18
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.9 px (~ 0.013 m), reached with 0.02 excluded cameras. 
  Frames 212 to 214 were interpolated.
Mean reprojection error for RSmallToe is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.5 px (~ 0.011 m), reached with 0.07 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.4 px (~ 0.019 m), reached with 0.07 excluded cameras. 
  Frames 132 to 132 were interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.2 px (~ 0.019 m), reached with 0.22 excluded cameras. 
  Frames 104 to 104, 139 to 146, 188 to 190, 195 to 195, 197 to 199, 237 to 237, 240 to 240, 242 to 245 were interpolated.
Mean reprojection error for LWrist is 3.3 px (~ 0.015 m), reached with 0.15 excluded cameras. 
  Frames 144 to 146, 148 to 148, 188 to 192, 194 to 195, 239 to 240, 242 to 243 were interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.15 excluded cameras. 
  Frames 142 to 142, 188 to 190, 193 to 195, 240 to 240 were interpolated.
Mean reprojection error for LIndex is 3.4 px (~ 0.015 m), reached with 0.12 excluded cameras. 
  Frames 188 to 190, 193 to 194, 245 to 245 were interpolated.
Mean reprojection error for LPinky is 4.0 px (~ 0.018 m), reached with 0.12 excluded cameras. 
  Frames 141 to 141, 147 to 148, 188 to 190, 194 to 195, 198 to 199 were interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.04 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 2% of the time, Camera cam2: 1%, and Camera cam3: 1%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0\pose-3d\0_1_18_p0_0-389.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_2_p0, for all frames.
On Wednesday 11. December 2024, 08:07:21
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_2_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_2_p0\pose-3d\0_1_2_p0_0-165.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_8_p0, for all frames.
On Wednesday 11. December 2024, 08:07:22
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_8_p0

Mean reprojection error for RHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_8_p0\pose-3d\0_1_8_p0_0-170.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_tpose_p1, for all frames.
On Wednesday 11. December 2024, 08:07:24
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_tpose_p1

Mean reprojection error for RHip is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_tpose_p1\pose-3d\0_1_tpose_p1_0-236.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_11_p1, for all frames.
On Wednesday 11. December 2024, 08:07:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_11_p1

Mean reprojection error for RHip is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.5 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_11_p1\pose-3d\0_1_11_p1_0-187.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_12_p1, for all frames.
On Wednesday 11. December 2024, 08:07:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_12_p1

Mean reprojection error for RHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 5.7 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 5.7 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 11.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_12_p1\pose-3d\0_1_12_p1_0-218.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_13_p1, for all frames.
On Wednesday 11. December 2024, 08:07:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_13_p1

Mean reprojection error for RHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_13_p1\pose-3d\0_1_13_p1_0-202.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_14_p1, for all frames.
On Wednesday 11. December 2024, 08:07:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_14_p1

Mean reprojection error for RHip is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_14_p1\pose-3d\0_1_14_p1_0-306.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_15_p1, for all frames.
On Wednesday 11. December 2024, 08:07:32
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_15_p1

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.3 px (~ 0.01 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_15_p1\pose-3d\0_1_15_p1_0-239.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_16_p1, for all frames.
On Wednesday 11. December 2024, 08:07:34
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_16_p1

Mean reprojection error for RHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.4 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_16_p1\pose-3d\0_1_16_p1_0-211.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_17_p1, for all frames.
On Wednesday 11. December 2024, 08:07:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_17_p1

Mean reprojection error for RHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.8 px (~ 0.026 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.0 px (~ 0.018 m), reached with 0.07 excluded cameras. 
  Frames 10 to 11 were interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_17_p1\pose-3d\0_1_17_p1_0-255.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_27_p1, for all frames.
On Wednesday 11. December 2024, 08:07:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_27_p1

Mean reprojection error for RHip is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_27_p1\pose-3d\0_1_27_p1_0-361.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_28_p1, for all frames.
On Wednesday 11. December 2024, 08:07:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_28_p1

Mean reprojection error for RHip is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.011 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 11.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_28_p1\pose-3d\0_1_28_p1_0-279.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_29_p1, for all frames.
On Wednesday 11. December 2024, 08:07:42
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_29_p1

Mean reprojection error for RHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_29_p1\pose-3d\0_1_29_p1_0-261.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_30_p1, for all frames.
On Wednesday 11. December 2024, 08:07:44
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_30_p1

Mean reprojection error for RHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.12 excluded cameras. 
  Frames 64 to 64, 94 to 94 were interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_30_p1\pose-3d\0_1_30_p1_0-226.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_31_p1, for all frames.
On Wednesday 11. December 2024, 08:07:46
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_31_p1

Mean reprojection error for RHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_31_p1\pose-3d\0_1_31_p1_0-230.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_32_p1, for all frames.
On Wednesday 11. December 2024, 08:07:48
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_32_p1

Mean reprojection error for RHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  Frames 274 to 274 were interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.1 px (~ 0.009 m), reached with 0.11 excluded cameras. 
  Frames 156 to 157, 159 to 159, 161 to 162 were interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.1 excluded cameras. 
  Frames 156 to 156, 159 to 159, 161 to 162 were interpolated.
Mean reprojection error for LThumb is 3.5 px (~ 0.015 m), reached with 0.12 excluded cameras. 
  Frames 155 to 157, 159 to 159, 161 to 163 were interpolated.
Mean reprojection error for LIndex is 2.7 px (~ 0.012 m), reached with 0.12 excluded cameras. 
  Frames 156 to 157, 159 to 159, 161 to 163 were interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.12 excluded cameras. 
  Frames 156 to 159, 161 to 162 were interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_32_p1\pose-3d\0_1_32_p1_0-299.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_33_p1, for all frames.
On Wednesday 11. December 2024, 08:07:50
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_33_p1

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.1 excluded cameras. 
  Frames 201 to 202 were interpolated.
Mean reprojection error for RIndex is 2.3 px (~ 0.01 m), reached with 1.1 excluded cameras. 
  Frames 55 to 55, 76 to 76, 122 to 122, 124 to 126, 130 to 131, 140 to 141, 145 to 145, 149 to 158, 160 to 167, 169 to 169, 171 to 173, 175 to 176, 217 to 217, 237 to 237, 241 to 246, 248 to 248, 268 to 268, 270 to 270, 272 to 272, 279 to 279 were interpolated.
  Frames ['190:215', '219:231'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.49 excluded cameras. 
  Frames 54 to 54, 62 to 63, 122 to 123, 150 to 150, 153 to 153, 165 to 166, 170 to 170, 172 to 173, 176 to 177, 179 to 180, 182 to 182, 184 to 184, 186 to 188, 195 to 195, 197 to 197, 238 to 238 were interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.8 px (~ 0.012 m), reached with 0.21 excluded cameras. 
  Frames 70 to 70, 116 to 117, 163 to 163 were interpolated.
Mean reprojection error for LIndex is 2.8 px (~ 0.012 m), reached with 0.16 excluded cameras. 
  Frames 80 to 80, 84 to 85 were interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.32 excluded cameras. 
  Frames 79 to 79, 120 to 120, 125 to 125, 160 to 160 were interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.09 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 4% of the time, Camera cam3: 3%, and Camera cam1: 2%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_33_p1\pose-3d\0_1_33_p1_0-333.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_34_p1, for all frames.
On Wednesday 11. December 2024, 08:07:53
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_34_p1

Mean reprojection error for RHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.21 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.21 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.9 px (~ 0.013 m), reached with 0.23 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.25 excluded cameras. 
  Frames 80 to 80 were interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.22 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.2 px (~ 0.014 m), reached with 0.15 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.24 excluded cameras. 
  Frames 68 to 75, 77 to 78, 80 to 80 were interpolated.
Mean reprojection error for LThumb is 3.4 px (~ 0.015 m), reached with 0.28 excluded cameras. 
  No frames needed to be interpolated.
  Frames ['67:81'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LIndex is 3.3 px (~ 0.015 m), reached with 0.3 excluded cameras. 
  Frames 53 to 54, 56 to 56 were interpolated.
  Frames ['67:81'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.29 excluded cameras. 
  No frames needed to be interpolated.
  Frames ['66:81'] could not be interpolated: consider adjusting thresholds.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.09 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 5% of the time, Camera cam1: 3%, and Camera cam2: 1%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_34_p1\pose-3d\0_1_34_p1_0-240.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_35_p1, for all frames.
On Wednesday 11. December 2024, 08:07:54
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_35_p1

Mean reprojection error for RHip is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.4 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 4.3 px (~ 0.019 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.8 px (~ 0.017 m), reached with 0.16 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.13 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.11 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.1 px (~ 0.018 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.8 px (~ 0.017 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.3 px, which roughly corresponds to 14.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.03 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 2% of the time, Camera cam1: 1%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_35_p1\pose-3d\0_1_35_p1_0-310.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_45_p1, for all frames.
On Wednesday 11. December 2024, 08:07:57
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_45_p1

Mean reprojection error for RHip is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.5 px (~ 0.024 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.5 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_45_p1\pose-3d\0_1_45_p1_0-261.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_46_p1, for all frames.
On Wednesday 11. December 2024, 08:07:59
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_46_p1

Mean reprojection error for RHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.3 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.6 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.9 px (~ 0.017 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.9 px (~ 0.017 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.3 px (~ 0.019 m), reached with 0.05 excluded cameras. 
  Frames 182 to 182 were interpolated.
Mean reprojection error for LPinky is 4.5 px (~ 0.02 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.4 px, which roughly corresponds to 15.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_46_p1\pose-3d\0_1_46_p1_0-339.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_47_p1, for all frames.
On Wednesday 11. December 2024, 08:08:01
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_47_p1

Mean reprojection error for RHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.6 px (~ 0.02 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.0 px (~ 0.018 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.2 px, which roughly corresponds to 14.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_47_p1\pose-3d\0_1_47_p1_0-350.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_48_p1, for all frames.
On Wednesday 11. December 2024, 08:08:04
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_48_p1

Mean reprojection error for RHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_48_p1\pose-3d\0_1_48_p1_0-353.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_49_p1, for all frames.
On Wednesday 11. December 2024, 08:08:07
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_49_p1

Mean reprojection error for RHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.5 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.7 px (~ 0.016 m), reached with 0.07 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_49_p1\pose-3d\0_1_49_p1_0-225.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_50_p1, for all frames.
On Wednesday 11. December 2024, 08:08:08
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_50_p1

Mean reprojection error for RHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.04 excluded cameras. 
  Frames 224 to 224 were interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_50_p1\pose-3d\0_1_50_p1_0-292.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_51_p1, for all frames.
On Wednesday 11. December 2024, 08:08:11
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_51_p1

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.4 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.3 px (~ 0.015 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.0 px (~ 0.018 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_51_p1\pose-3d\0_1_51_p1_0-232.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_52_p1, for all frames.
On Wednesday 11. December 2024, 08:08:12
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_52_p1

Mean reprojection error for RHip is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.4 px (~ 0.011 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.5 px (~ 0.015 m), reached with 0.02 excluded cameras. 
  Frames 302 to 303 were interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.03 excluded cameras. 
  Frames 303 to 303 were interpolated.
Mean reprojection error for LPinky is 3.6 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_52_p1\pose-3d\0_1_52_p1_0-423.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_53_p1, for all frames.
On Wednesday 11. December 2024, 08:08:16
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_53_p1

Mean reprojection error for RHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.8 px (~ 0.017 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.4 px (~ 0.019 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.9 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_53_p1\pose-3d\0_1_53_p1_0-279.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_10_p1, for all frames.
On Wednesday 11. December 2024, 08:08:18
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_10_p1

Mean reprojection error for RHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_10_p1\pose-3d\0_1_10_p1_0-318.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_9_p1, for all frames.
On Wednesday 11. December 2024, 08:08:20
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_9_p1

Mean reprojection error for RHip is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.3 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 6.0 px (~ 0.027 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_9_p1\pose-3d\0_1_9_p1_0-324.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_tpose_p0, for all frames.
On Wednesday 11. December 2024, 08:08:24
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0\pose-3d\0_1_tpose_p0_0-197_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_0_p0, for all frames.
On Wednesday 11. December 2024, 08:08:24
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0\pose-3d\0_1_0_p0_0-299_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_3_p0, for all frames.
On Wednesday 11. December 2024, 08:08:24
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0\pose-3d\0_1_3_p0_0-533_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_4_p0, for all frames.
On Wednesday 11. December 2024, 08:08:24
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_4_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_4_p0\pose-3d\0_1_4_p0_0-276_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_5_p0, for all frames.
On Wednesday 11. December 2024, 08:08:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_5_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_5_p0\pose-3d\0_1_5_p0_0-175_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_6_p0, for all frames.
On Wednesday 11. December 2024, 08:08:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_6_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_6_p0\pose-3d\0_1_6_p0_0-223_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_7_p0, for all frames.
On Wednesday 11. December 2024, 08:08:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_7_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_7_p0\pose-3d\0_1_7_p0_0-226_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_19_p0, for all frames.
On Wednesday 11. December 2024, 08:08:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_19_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_19_p0\pose-3d\0_1_19_p0_0-352_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_20_p0, for all frames.
On Wednesday 11. December 2024, 08:08:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_20_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_20_p0\pose-3d\0_1_20_p0_0-232_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_21_p0, for all frames.
On Wednesday 11. December 2024, 08:08:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_21_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_21_p0\pose-3d\0_1_21_p0_0-215_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_22_p0, for all frames.
On Wednesday 11. December 2024, 08:08:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_22_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_22_p0\pose-3d\0_1_22_p0_0-274_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_23_p0, for all frames.
On Wednesday 11. December 2024, 08:08:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_23_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_23_p0\pose-3d\0_1_23_p0_0-231_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_24_p0, for all frames.
On Wednesday 11. December 2024, 08:08:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_24_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_24_p0\pose-3d\0_1_24_p0_0-342_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_25_p0, for all frames.
On Wednesday 11. December 2024, 08:08:26
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_25_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_25_p0\pose-3d\0_1_25_p0_0-370_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_26_p0, for all frames.
On Wednesday 11. December 2024, 08:08:26
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_26_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_26_p0\pose-3d\0_1_26_p0_0-249_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_36_p0, for all frames.
On Wednesday 11. December 2024, 08:08:26
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_36_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_36_p0\pose-3d\0_1_36_p0_0-295_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_37_p0, for all frames.
On Wednesday 11. December 2024, 08:08:26
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_37_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_37_p0\pose-3d\0_1_37_p0_0-238_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_38_p0, for all frames.
On Wednesday 11. December 2024, 08:08:26
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_38_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_38_p0\pose-3d\0_1_38_p0_0-322_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_39_p0, for all frames.
On Wednesday 11. December 2024, 08:08:26
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_39_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_39_p0\pose-3d\0_1_39_p0_0-427_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_40_p0, for all frames.
On Wednesday 11. December 2024, 08:08:26
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_40_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_40_p0\pose-3d\0_1_40_p0_0-182_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_41_p0, for all frames.
On Wednesday 11. December 2024, 08:08:26
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_41_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_41_p0\pose-3d\0_1_41_p0_0-364_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_42_p0, for all frames.
On Wednesday 11. December 2024, 08:08:26
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_42_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_42_p0\pose-3d\0_1_42_p0_0-265_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_43_p0, for all frames.
On Wednesday 11. December 2024, 08:08:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_43_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_43_p0\pose-3d\0_1_43_p0_0-253_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_44_p0, for all frames.
On Wednesday 11. December 2024, 08:08:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_44_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_44_p0\pose-3d\0_1_44_p0_0-333_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_1_p0, for all frames.
On Wednesday 11. December 2024, 08:08:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_1_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_1_p0\pose-3d\0_1_1_p0_0-139_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_18_p0, for all frames.
On Wednesday 11. December 2024, 08:08:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0\pose-3d\0_1_18_p0_0-389_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_2_p0, for all frames.
On Wednesday 11. December 2024, 08:08:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_2_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_2_p0\pose-3d\0_1_2_p0_0-165_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_8_p0, for all frames.
On Wednesday 11. December 2024, 08:08:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_8_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_8_p0\pose-3d\0_1_8_p0_0-170_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_tpose_p1, for all frames.
On Wednesday 11. December 2024, 08:08:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_tpose_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_tpose_p1\pose-3d\0_1_tpose_p1_0-236_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_11_p1, for all frames.
On Wednesday 11. December 2024, 08:08:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_11_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_11_p1\pose-3d\0_1_11_p1_0-187_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_12_p1, for all frames.
On Wednesday 11. December 2024, 08:08:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_12_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_12_p1\pose-3d\0_1_12_p1_0-218_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_13_p1, for all frames.
On Wednesday 11. December 2024, 08:08:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_13_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_13_p1\pose-3d\0_1_13_p1_0-202_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_14_p1, for all frames.
On Wednesday 11. December 2024, 08:08:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_14_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_14_p1\pose-3d\0_1_14_p1_0-306_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_15_p1, for all frames.
On Wednesday 11. December 2024, 08:08:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_15_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_15_p1\pose-3d\0_1_15_p1_0-239_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_16_p1, for all frames.
On Wednesday 11. December 2024, 08:08:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_16_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_16_p1\pose-3d\0_1_16_p1_0-211_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_17_p1, for all frames.
On Wednesday 11. December 2024, 08:08:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_17_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_17_p1\pose-3d\0_1_17_p1_0-255_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_27_p1, for all frames.
On Wednesday 11. December 2024, 08:08:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_27_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_27_p1\pose-3d\0_1_27_p1_0-361_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_28_p1, for all frames.
On Wednesday 11. December 2024, 08:08:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_28_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_28_p1\pose-3d\0_1_28_p1_0-279_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_29_p1, for all frames.
On Wednesday 11. December 2024, 08:08:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_29_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_29_p1\pose-3d\0_1_29_p1_0-261_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_30_p1, for all frames.
On Wednesday 11. December 2024, 08:08:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_30_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_30_p1\pose-3d\0_1_30_p1_0-226_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_31_p1, for all frames.
On Wednesday 11. December 2024, 08:08:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_31_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_31_p1\pose-3d\0_1_31_p1_0-230_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_32_p1, for all frames.
On Wednesday 11. December 2024, 08:08:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_32_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_32_p1\pose-3d\0_1_32_p1_0-299_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_33_p1, for all frames.
On Wednesday 11. December 2024, 08:08:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_33_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_33_p1\pose-3d\0_1_33_p1_0-333_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_34_p1, for all frames.
On Wednesday 11. December 2024, 08:08:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_34_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_34_p1\pose-3d\0_1_34_p1_0-240_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_35_p1, for all frames.
On Wednesday 11. December 2024, 08:08:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_35_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_35_p1\pose-3d\0_1_35_p1_0-310_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_45_p1, for all frames.
On Wednesday 11. December 2024, 08:08:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_45_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_45_p1\pose-3d\0_1_45_p1_0-261_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_46_p1, for all frames.
On Wednesday 11. December 2024, 08:08:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_46_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_46_p1\pose-3d\0_1_46_p1_0-339_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_47_p1, for all frames.
On Wednesday 11. December 2024, 08:08:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_47_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_47_p1\pose-3d\0_1_47_p1_0-350_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_48_p1, for all frames.
On Wednesday 11. December 2024, 08:08:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_48_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_48_p1\pose-3d\0_1_48_p1_0-353_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_49_p1, for all frames.
On Wednesday 11. December 2024, 08:08:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_49_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_49_p1\pose-3d\0_1_49_p1_0-225_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_50_p1, for all frames.
On Wednesday 11. December 2024, 08:08:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_50_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_50_p1\pose-3d\0_1_50_p1_0-292_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_51_p1, for all frames.
On Wednesday 11. December 2024, 08:08:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_51_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_51_p1\pose-3d\0_1_51_p1_0-232_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_52_p1, for all frames.
On Wednesday 11. December 2024, 08:08:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_52_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_52_p1\pose-3d\0_1_52_p1_0-423_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_53_p1, for all frames.
On Wednesday 11. December 2024, 08:08:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_53_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_53_p1\pose-3d\0_1_53_p1_0-279_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_10_p1, for all frames.
On Wednesday 11. December 2024, 08:08:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_10_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_10_p1\pose-3d\0_1_10_p1_0-318_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_9_p1, for all frames.
On Wednesday 11. December 2024, 08:08:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_9_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_9_p1\pose-3d\0_1_9_p1_0-324_filt_butterworth.trc.



---------------------------------------------------------------------
Triangulation of 2D points for 0_2_0_p0, for all frames.
On Wednesday 11. December 2024, 08:08:32
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_0_p0

Mean reprojection error for RHip is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.8 px (~ 0.012 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 11.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_0_p0\pose-3d\0_2_0_p0_0-188.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_1_p0, for all frames.
On Wednesday 11. December 2024, 08:08:34
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_1_p0

Mean reprojection error for RHip is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.09 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.09 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.13 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.7 px (~ 0.016 m), reached with 0.12 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.6 px (~ 0.016 m), reached with 0.11 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 2% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_1_p0\pose-3d\0_2_1_p0_0-222.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_2_p0, for all frames.
On Wednesday 11. December 2024, 08:08:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_2_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.6 px (~ 0.011 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.5 px (~ 0.02 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.7 px (~ 0.016 m), reached with 0.11 excluded cameras. 
  Frames 50 to 51, 53 to 54, 67 to 67, 72 to 72 were interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.09 excluded cameras. 
  Frames 71 to 71, 83 to 83 were interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.3 px (~ 0.015 m), reached with 0.25 excluded cameras. 
  Frames 260 to 267, 281 to 284, 292 to 300 were interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.12 excluded cameras. 
  Frames 265 to 267, 280 to 282 were interpolated.
Mean reprojection error for LThumb is 3.4 px (~ 0.015 m), reached with 0.09 excluded cameras. 
  Frames 267 to 267, 280 to 280 were interpolated.
Mean reprojection error for LIndex is 3.5 px (~ 0.015 m), reached with 0.13 excluded cameras. 
  Frames 266 to 267, 280 to 281 were interpolated.
Mean reprojection error for LPinky is 3.5 px (~ 0.015 m), reached with 0.13 excluded cameras. 
  Frames 118 to 118, 266 to 267, 281 to 281 were interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.04 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 2% of the time, Camera cam2: 2%, and Camera cam3: 1%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_2_p0\pose-3d\0_2_2_p0_0-403.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_3_p0, for all frames.
On Wednesday 11. December 2024, 08:08:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_3_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.07 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_3_p0\pose-3d\0_2_3_p0_0-153.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_4_p0, for all frames.
On Wednesday 11. December 2024, 08:08:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_4_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  Frames 261 to 261 were interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_4_p0\pose-3d\0_2_4_p0_0-600.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m04s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_5_p0, for all frames.
On Wednesday 11. December 2024, 08:08:44
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_5_p0

Mean reprojection error for RHip is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_5_p0\pose-3d\0_2_5_p0_0-179.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_6_p0, for all frames.
On Wednesday 11. December 2024, 08:08:46
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_6_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 11.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_6_p0\pose-3d\0_2_6_p0_0-318.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_7_p0, for all frames.
On Wednesday 11. December 2024, 08:08:48
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_7_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.9 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.1 px (~ 0.018 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 11.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_7_p0\pose-3d\0_2_7_p0_0-472.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_8_p0, for all frames.
On Wednesday 11. December 2024, 08:08:52
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_8_p0

Mean reprojection error for RHip is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_8_p0\pose-3d\0_2_8_p0_0-189.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_9_p0, for all frames.
On Wednesday 11. December 2024, 08:08:53
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_9_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_9_p0\pose-3d\0_2_9_p0_0-232.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_10_p0, for all frames.
On Wednesday 11. December 2024, 08:08:55
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_10_p0


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_tpose_p0, for all frames.
On Wednesday 11. December 2024, 08:15:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0

Mean reprojection error for RHip is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0\pose-3d\0_1_tpose_p0_0-197.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_0_p0, for all frames.
On Wednesday 11. December 2024, 08:15:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0\pose-3d\0_1_0_p0_0-299.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_3_p0, for all frames.
On Wednesday 11. December 2024, 08:15:31
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0


---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_tpose_p0, for all frames.
On Wednesday 11. December 2024, 08:15:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0\pose-3d\0_1_tpose_p0_0-197_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_0_p0, for all frames.
On Wednesday 11. December 2024, 08:15:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0\pose-3d\0_1_0_p0_0-299_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_3_p0, for all frames.
On Wednesday 11. December 2024, 08:15:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0\pose-3d\0_1_3_p0_0-533_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_4_p0, for all frames.
On Wednesday 11. December 2024, 08:15:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_4_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_4_p0\pose-3d\0_1_4_p0_0-276_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_5_p0, for all frames.
On Wednesday 11. December 2024, 08:15:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_5_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_5_p0\pose-3d\0_1_5_p0_0-175_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_6_p0, for all frames.
On Wednesday 11. December 2024, 08:15:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_6_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_6_p0\pose-3d\0_1_6_p0_0-223_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_7_p0, for all frames.
On Wednesday 11. December 2024, 08:15:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_7_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_7_p0\pose-3d\0_1_7_p0_0-226_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_19_p0, for all frames.
On Wednesday 11. December 2024, 08:15:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_19_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_19_p0\pose-3d\0_1_19_p0_0-352_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_20_p0, for all frames.
On Wednesday 11. December 2024, 08:15:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_20_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_20_p0\pose-3d\0_1_20_p0_0-232_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_21_p0, for all frames.
On Wednesday 11. December 2024, 08:15:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_21_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_21_p0\pose-3d\0_1_21_p0_0-215_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_22_p0, for all frames.
On Wednesday 11. December 2024, 08:15:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_22_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_22_p0\pose-3d\0_1_22_p0_0-274_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_23_p0, for all frames.
On Wednesday 11. December 2024, 08:15:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_23_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_23_p0\pose-3d\0_1_23_p0_0-231_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_24_p0, for all frames.
On Wednesday 11. December 2024, 08:15:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_24_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_24_p0\pose-3d\0_1_24_p0_0-342_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_25_p0, for all frames.
On Wednesday 11. December 2024, 08:15:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_25_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_25_p0\pose-3d\0_1_25_p0_0-370_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_26_p0, for all frames.
On Wednesday 11. December 2024, 08:15:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_26_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_26_p0\pose-3d\0_1_26_p0_0-249_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_36_p0, for all frames.
On Wednesday 11. December 2024, 08:15:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_36_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_36_p0\pose-3d\0_1_36_p0_0-295_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_37_p0, for all frames.
On Wednesday 11. December 2024, 08:15:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_37_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_37_p0\pose-3d\0_1_37_p0_0-238_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_38_p0, for all frames.
On Wednesday 11. December 2024, 08:15:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_38_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_38_p0\pose-3d\0_1_38_p0_0-322_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_39_p0, for all frames.
On Wednesday 11. December 2024, 08:15:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_39_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_39_p0\pose-3d\0_1_39_p0_0-427_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_40_p0, for all frames.
On Wednesday 11. December 2024, 08:15:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_40_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_40_p0\pose-3d\0_1_40_p0_0-182_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_41_p0, for all frames.
On Wednesday 11. December 2024, 08:15:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_41_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_41_p0\pose-3d\0_1_41_p0_0-364_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_42_p0, for all frames.
On Wednesday 11. December 2024, 08:15:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_42_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_42_p0\pose-3d\0_1_42_p0_0-265_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_43_p0, for all frames.
On Wednesday 11. December 2024, 08:15:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_43_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_43_p0\pose-3d\0_1_43_p0_0-253_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_44_p0, for all frames.
On Wednesday 11. December 2024, 08:15:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_44_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_44_p0\pose-3d\0_1_44_p0_0-333_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_1_p0, for all frames.
On Wednesday 11. December 2024, 08:15:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_1_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_1_p0\pose-3d\0_1_1_p0_0-139_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_18_p0, for all frames.
On Wednesday 11. December 2024, 08:15:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0\pose-3d\0_1_18_p0_0-389_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_2_p0, for all frames.
On Wednesday 11. December 2024, 08:15:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_2_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_2_p0\pose-3d\0_1_2_p0_0-165_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_8_p0, for all frames.
On Wednesday 11. December 2024, 08:15:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_8_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_8_p0\pose-3d\0_1_8_p0_0-170_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_tpose_p1, for all frames.
On Wednesday 11. December 2024, 08:15:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_tpose_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_tpose_p1\pose-3d\0_1_tpose_p1_0-236_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_11_p1, for all frames.
On Wednesday 11. December 2024, 08:15:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_11_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_11_p1\pose-3d\0_1_11_p1_0-187_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_12_p1, for all frames.
On Wednesday 11. December 2024, 08:15:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_12_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_12_p1\pose-3d\0_1_12_p1_0-218_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_13_p1, for all frames.
On Wednesday 11. December 2024, 08:15:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_13_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_13_p1\pose-3d\0_1_13_p1_0-202_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_14_p1, for all frames.
On Wednesday 11. December 2024, 08:15:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_14_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_14_p1\pose-3d\0_1_14_p1_0-306_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_15_p1, for all frames.
On Wednesday 11. December 2024, 08:15:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_15_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_15_p1\pose-3d\0_1_15_p1_0-239_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_16_p1, for all frames.
On Wednesday 11. December 2024, 08:15:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_16_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_16_p1\pose-3d\0_1_16_p1_0-211_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_17_p1, for all frames.
On Wednesday 11. December 2024, 08:15:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_17_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_17_p1\pose-3d\0_1_17_p1_0-255_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_27_p1, for all frames.
On Wednesday 11. December 2024, 08:15:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_27_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_27_p1\pose-3d\0_1_27_p1_0-361_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_28_p1, for all frames.
On Wednesday 11. December 2024, 08:15:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_28_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_28_p1\pose-3d\0_1_28_p1_0-279_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_29_p1, for all frames.
On Wednesday 11. December 2024, 08:15:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_29_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_29_p1\pose-3d\0_1_29_p1_0-261_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_30_p1, for all frames.
On Wednesday 11. December 2024, 08:15:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_30_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_30_p1\pose-3d\0_1_30_p1_0-226_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_31_p1, for all frames.
On Wednesday 11. December 2024, 08:15:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_31_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_31_p1\pose-3d\0_1_31_p1_0-230_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_32_p1, for all frames.
On Wednesday 11. December 2024, 08:15:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_32_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_32_p1\pose-3d\0_1_32_p1_0-299_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_33_p1, for all frames.
On Wednesday 11. December 2024, 08:15:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_33_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_33_p1\pose-3d\0_1_33_p1_0-333_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_34_p1, for all frames.
On Wednesday 11. December 2024, 08:15:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_34_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_34_p1\pose-3d\0_1_34_p1_0-240_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_35_p1, for all frames.
On Wednesday 11. December 2024, 08:15:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_35_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_35_p1\pose-3d\0_1_35_p1_0-310_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_45_p1, for all frames.
On Wednesday 11. December 2024, 08:15:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_45_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_45_p1\pose-3d\0_1_45_p1_0-261_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_46_p1, for all frames.
On Wednesday 11. December 2024, 08:15:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_46_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_46_p1\pose-3d\0_1_46_p1_0-339_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_47_p1, for all frames.
On Wednesday 11. December 2024, 08:15:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_47_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_47_p1\pose-3d\0_1_47_p1_0-350_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_48_p1, for all frames.
On Wednesday 11. December 2024, 08:15:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_48_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_48_p1\pose-3d\0_1_48_p1_0-353_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_49_p1, for all frames.
On Wednesday 11. December 2024, 08:15:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_49_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_49_p1\pose-3d\0_1_49_p1_0-225_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_50_p1, for all frames.
On Wednesday 11. December 2024, 08:15:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_50_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_50_p1\pose-3d\0_1_50_p1_0-292_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_51_p1, for all frames.
On Wednesday 11. December 2024, 08:15:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_51_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_51_p1\pose-3d\0_1_51_p1_0-232_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_52_p1, for all frames.
On Wednesday 11. December 2024, 08:15:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_52_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_52_p1\pose-3d\0_1_52_p1_0-423_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_53_p1, for all frames.
On Wednesday 11. December 2024, 08:15:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_53_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_53_p1\pose-3d\0_1_53_p1_0-279_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_10_p1, for all frames.
On Wednesday 11. December 2024, 08:15:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_10_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_10_p1\pose-3d\0_1_10_p1_0-318_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_9_p1, for all frames.
On Wednesday 11. December 2024, 08:15:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_9_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_9_p1\pose-3d\0_1_9_p1_0-324_filt_butterworth.trc.



---------------------------------------------------------------------
Triangulation of 2D points for 0_2_0_p0, for all frames.
On Wednesday 11. December 2024, 08:15:43
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_0_p0

Mean reprojection error for RHip is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.8 px (~ 0.012 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 11.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_0_p0\pose-3d\0_2_0_p0_0-188.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_1_p0, for all frames.
On Wednesday 11. December 2024, 08:15:44
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_1_p0

Mean reprojection error for RHip is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.09 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.09 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.13 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.7 px (~ 0.016 m), reached with 0.12 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.6 px (~ 0.016 m), reached with 0.11 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 2% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_1_p0\pose-3d\0_2_1_p0_0-222.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_2_p0, for all frames.
On Wednesday 11. December 2024, 08:15:46
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_2_p0


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_tpose_p0, for all frames.
On Wednesday 11. December 2024, 08:16:04
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0

Mean reprojection error for RHip is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0\pose-3d\0_1_tpose_p0_0-197.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_0_p0, for all frames.
On Wednesday 11. December 2024, 08:16:06
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0\pose-3d\0_1_0_p0_0-299.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_3_p0, for all frames.
On Wednesday 11. December 2024, 08:16:09
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0\pose-3d\0_1_3_p0_0-533.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m04s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_4_p0, for all frames.
On Wednesday 11. December 2024, 08:16:13
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_4_p0

Mean reprojection error for RHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_4_p0\pose-3d\0_1_4_p0_0-276.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_5_p0, for all frames.
On Wednesday 11. December 2024, 08:16:15
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_5_p0

Mean reprojection error for RHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_5_p0\pose-3d\0_1_5_p0_0-175.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_6_p0, for all frames.
On Wednesday 11. December 2024, 08:16:16
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_6_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_6_p0\pose-3d\0_1_6_p0_0-223.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_7_p0, for all frames.
On Wednesday 11. December 2024, 08:16:18
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_7_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_7_p0\pose-3d\0_1_7_p0_0-226.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_19_p0, for all frames.
On Wednesday 11. December 2024, 08:16:20
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_19_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.8 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.9 px (~ 0.017 m), reached with 0.16 excluded cameras. 
  Frames 200 to 200 were interpolated.
Mean reprojection error for RIndex is 4.4 px (~ 0.019 m), reached with 0.3 excluded cameras. 
  Frames 118 to 118, 121 to 121, 123 to 123, 226 to 228, 233 to 233 were interpolated.
Mean reprojection error for RPinky is 4.2 px (~ 0.019 m), reached with 0.39 excluded cameras. 
  Frames 123 to 126, 132 to 133, 169 to 169, 197 to 197, 224 to 225, 234 to 236, 240 to 242 were interpolated.
Mean reprojection error for LShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.3 px (~ 0.015 m), reached with 0.26 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 4.5 px (~ 0.02 m), reached with 0.12 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.7 px (~ 0.021 m), reached with 0.41 excluded cameras. 
  Frames 98 to 98, 141 to 141, 177 to 178, 190 to 190, 192 to 193, 198 to 200, 216 to 217, 219 to 220, 225 to 225, 238 to 238, 243 to 246 were interpolated.
Mean reprojection error for LIndex is 4.1 px (~ 0.018 m), reached with 0.55 excluded cameras. 
  Frames 138 to 141, 148 to 152, 172 to 172, 174 to 177, 184 to 185, 190 to 190, 192 to 193, 198 to 200, 216 to 217, 219 to 221, 232 to 232, 238 to 238, 243 to 247 were interpolated.
Mean reprojection error for LPinky is 4.3 px (~ 0.019 m), reached with 0.47 excluded cameras. 
  Frames 138 to 141, 177 to 179, 204 to 204, 216 to 217, 219 to 222, 232 to 232, 238 to 238, 243 to 247 were interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.1 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 5% of the time, Camera cam3: 3%, and Camera cam2: 2%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_19_p0\pose-3d\0_1_19_p0_0-352.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_20_p0, for all frames.
On Wednesday 11. December 2024, 08:16:23
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_20_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.8 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.14 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 1% of the time, Camera cam3: 0%, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_20_p0\pose-3d\0_1_20_p0_0-232.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_21_p0, for all frames.
On Wednesday 11. December 2024, 08:16:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_21_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.6 px (~ 0.003 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.18 excluded cameras. 
  Frames 163 to 163, 168 to 168 were interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_21_p0\pose-3d\0_1_21_p0_0-215.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_22_p0, for all frames.
On Wednesday 11. December 2024, 08:16:26
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_22_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.3 px, which roughly corresponds to 10.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_22_p0\pose-3d\0_1_22_p0_0-274.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_23_p0, for all frames.
On Wednesday 11. December 2024, 08:16:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_23_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.7 px (~ 0.003 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.3 px, which roughly corresponds to 10.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_23_p0\pose-3d\0_1_23_p0_0-231.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_24_p0, for all frames.
On Wednesday 11. December 2024, 08:16:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_24_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_24_p0\pose-3d\0_1_24_p0_0-342.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_25_p0, for all frames.
On Wednesday 11. December 2024, 08:16:33
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_25_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 0.9 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.09 excluded cameras. 
  Frames 271 to 273, 278 to 278 were interpolated.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.12 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.05 excluded cameras. 
  Frames 258 to 258 were interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.8 px (~ 0.017 m), reached with 0.03 excluded cameras. 
  Frames 233 to 233 were interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 1% of the time, Camera cam1: 1%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_25_p0\pose-3d\0_1_25_p0_0-370.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_26_p0, for all frames.
On Wednesday 11. December 2024, 08:16:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_26_p0

Mean reprojection error for RHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_26_p0\pose-3d\0_1_26_p0_0-249.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_36_p0, for all frames.
On Wednesday 11. December 2024, 08:16:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_36_p0

Mean reprojection error for RHip is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 11.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_36_p0\pose-3d\0_1_36_p0_0-295.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_37_p0, for all frames.
On Wednesday 11. December 2024, 08:16:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_37_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.8 px (~ 0.021 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.5 px (~ 0.015 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_37_p0\pose-3d\0_1_37_p0_0-238.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_38_p0, for all frames.
On Wednesday 11. December 2024, 08:16:42
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_38_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.23 excluded cameras. 
  Frames 128 to 128, 213 to 213, 218 to 218, 225 to 226 were interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.17 excluded cameras. 
  Frames 131 to 131, 177 to 177, 179 to 179, 213 to 213, 224 to 224 were interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 1% of the time, Camera cam3: 1%, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_38_p0\pose-3d\0_1_38_p0_0-322.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_39_p0, for all frames.
On Wednesday 11. December 2024, 08:16:45
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_39_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.4 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.6 px (~ 0.016 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.3 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  Frames 258 to 259 were interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_39_p0\pose-3d\0_1_39_p0_0-427.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_40_p0, for all frames.
On Wednesday 11. December 2024, 08:16:48
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_40_p0

Mean reprojection error for RHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.6 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.4 px (~ 0.019 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.4 px (~ 0.019 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.9 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_40_p0\pose-3d\0_1_40_p0_0-182.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_41_p0, for all frames.
On Wednesday 11. December 2024, 08:16:50
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_41_p0

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.5 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_41_p0\pose-3d\0_1_41_p0_0-364.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_42_p0, for all frames.
On Wednesday 11. December 2024, 08:16:53
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_42_p0

Mean reprojection error for RHip is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.6 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.5 px (~ 0.011 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.8 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.3 px, which roughly corresponds to 10.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_42_p0\pose-3d\0_1_42_p0_0-265.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_43_p0, for all frames.
On Wednesday 11. December 2024, 08:16:55
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_43_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.5 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_43_p0\pose-3d\0_1_43_p0_0-253.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_44_p0, for all frames.
On Wednesday 11. December 2024, 08:16:57
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_44_p0

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.4 excluded cameras. 
  Frames 216 to 219 were interpolated.
Mean reprojection error for LWrist is 4.0 px (~ 0.018 m), reached with 0.44 excluded cameras. 
  Frames 102 to 103, 215 to 220, 236 to 236 were interpolated.
Mean reprojection error for LThumb is 3.8 px (~ 0.017 m), reached with 0.62 excluded cameras. 
  Frames 102 to 103, 110 to 110, 112 to 115, 117 to 123, 132 to 132, 136 to 136, 140 to 140, 142 to 144, 152 to 152, 158 to 158, 160 to 161, 173 to 174, 182 to 183, 198 to 205, 207 to 207, 210 to 210, 213 to 220, 228 to 228, 230 to 230, 234 to 235 were interpolated.
Mean reprojection error for LIndex is 3.9 px (~ 0.017 m), reached with 0.64 excluded cameras. 
  Frames 101 to 103, 107 to 107, 110 to 110, 117 to 118, 135 to 135, 146 to 146, 157 to 157, 161 to 161, 168 to 168, 173 to 173, 175 to 175, 178 to 183, 185 to 187, 189 to 189, 191 to 193, 203 to 204, 207 to 207, 210 to 210, 213 to 220, 229 to 231, 233 to 234, 237 to 238 were interpolated.
Mean reprojection error for LPinky is 4.3 px (~ 0.019 m), reached with 0.78 excluded cameras. 
  Frames 101 to 105, 113 to 113, 117 to 117, 120 to 123, 127 to 130, 144 to 144, 147 to 147, 161 to 170, 172 to 173, 192 to 193, 197 to 197, 204 to 207, 210 to 210, 230 to 239 were interpolated.
  Frames ['175:189', '213:226'] could not be interpolated: consider adjusting thresholds.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.11 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 7% of the time, Camera cam2: 2%, and Camera cam3: 2%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_44_p0\pose-3d\0_1_44_p0_0-333.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_1_p0, for all frames.
On Wednesday 11. December 2024, 08:17:00
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_1_p0

Mean reprojection error for RHip is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_1_p0\pose-3d\0_1_1_p0_0-139.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_18_p0, for all frames.
On Wednesday 11. December 2024, 08:17:01
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.9 px (~ 0.013 m), reached with 0.02 excluded cameras. 
  Frames 212 to 214 were interpolated.
Mean reprojection error for RSmallToe is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.5 px (~ 0.011 m), reached with 0.07 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.4 px (~ 0.019 m), reached with 0.07 excluded cameras. 
  Frames 132 to 132 were interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.2 px (~ 0.019 m), reached with 0.22 excluded cameras. 
  Frames 104 to 104, 139 to 146, 188 to 190, 195 to 195, 197 to 199, 237 to 237, 240 to 240, 242 to 245 were interpolated.
Mean reprojection error for LWrist is 3.3 px (~ 0.015 m), reached with 0.15 excluded cameras. 
  Frames 144 to 146, 148 to 148, 188 to 192, 194 to 195, 239 to 240, 242 to 243 were interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.15 excluded cameras. 
  Frames 142 to 142, 188 to 190, 193 to 195, 240 to 240 were interpolated.
Mean reprojection error for LIndex is 3.4 px (~ 0.015 m), reached with 0.12 excluded cameras. 
  Frames 188 to 190, 193 to 194, 245 to 245 were interpolated.
Mean reprojection error for LPinky is 4.0 px (~ 0.018 m), reached with 0.12 excluded cameras. 
  Frames 141 to 141, 147 to 148, 188 to 190, 194 to 195, 198 to 199 were interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.04 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 2% of the time, Camera cam2: 1%, and Camera cam3: 1%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0\pose-3d\0_1_18_p0_0-389.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_2_p0, for all frames.
On Wednesday 11. December 2024, 08:17:04
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_2_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_2_p0\pose-3d\0_1_2_p0_0-165.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_8_p0, for all frames.
On Wednesday 11. December 2024, 08:17:06
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_8_p0

Mean reprojection error for RHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_8_p0\pose-3d\0_1_8_p0_0-170.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_tpose_p1, for all frames.
On Wednesday 11. December 2024, 08:17:07
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_tpose_p1

Mean reprojection error for RHip is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_tpose_p1\pose-3d\0_1_tpose_p1_0-236.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_11_p1, for all frames.
On Wednesday 11. December 2024, 08:17:09
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_11_p1

Mean reprojection error for RHip is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.5 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_11_p1\pose-3d\0_1_11_p1_0-187.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_12_p1, for all frames.
On Wednesday 11. December 2024, 08:17:11
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_12_p1

Mean reprojection error for RHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 5.7 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 5.7 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 11.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_12_p1\pose-3d\0_1_12_p1_0-218.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_13_p1, for all frames.
On Wednesday 11. December 2024, 08:17:12
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_13_p1

Mean reprojection error for RHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_13_p1\pose-3d\0_1_13_p1_0-202.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_14_p1, for all frames.
On Wednesday 11. December 2024, 08:17:14
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_14_p1

Mean reprojection error for RHip is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_14_p1\pose-3d\0_1_14_p1_0-306.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_15_p1, for all frames.
On Wednesday 11. December 2024, 08:17:16
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_15_p1

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.3 px (~ 0.01 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_15_p1\pose-3d\0_1_15_p1_0-239.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_16_p1, for all frames.
On Wednesday 11. December 2024, 08:17:18
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_16_p1

Mean reprojection error for RHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.4 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_16_p1\pose-3d\0_1_16_p1_0-211.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_17_p1, for all frames.
On Wednesday 11. December 2024, 08:17:20
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_17_p1

Mean reprojection error for RHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.8 px (~ 0.026 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.0 px (~ 0.018 m), reached with 0.07 excluded cameras. 
  Frames 10 to 11 were interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_17_p1\pose-3d\0_1_17_p1_0-255.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_27_p1, for all frames.
On Wednesday 11. December 2024, 08:17:22
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_27_p1

Mean reprojection error for RHip is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_27_p1\pose-3d\0_1_27_p1_0-361.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_28_p1, for all frames.
On Wednesday 11. December 2024, 08:17:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_28_p1

Mean reprojection error for RHip is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.011 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 11.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_28_p1\pose-3d\0_1_28_p1_0-279.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_29_p1, for all frames.
On Wednesday 11. December 2024, 08:17:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_29_p1

Mean reprojection error for RHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_29_p1\pose-3d\0_1_29_p1_0-261.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_30_p1, for all frames.
On Wednesday 11. December 2024, 08:17:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_30_p1

Mean reprojection error for RHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.12 excluded cameras. 
  Frames 64 to 64, 94 to 94 were interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_30_p1\pose-3d\0_1_30_p1_0-226.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_31_p1, for all frames.
On Wednesday 11. December 2024, 08:17:31
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_31_p1

Mean reprojection error for RHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_31_p1\pose-3d\0_1_31_p1_0-230.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_32_p1, for all frames.
On Wednesday 11. December 2024, 08:17:33
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_32_p1

Mean reprojection error for RHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  Frames 274 to 274 were interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.1 px (~ 0.009 m), reached with 0.11 excluded cameras. 
  Frames 156 to 157, 159 to 159, 161 to 162 were interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.1 excluded cameras. 
  Frames 156 to 156, 159 to 159, 161 to 162 were interpolated.
Mean reprojection error for LThumb is 3.5 px (~ 0.015 m), reached with 0.12 excluded cameras. 
  Frames 155 to 157, 159 to 159, 161 to 163 were interpolated.
Mean reprojection error for LIndex is 2.7 px (~ 0.012 m), reached with 0.12 excluded cameras. 
  Frames 156 to 157, 159 to 159, 161 to 163 were interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.12 excluded cameras. 
  Frames 156 to 159, 161 to 162 were interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_32_p1\pose-3d\0_1_32_p1_0-299.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_33_p1, for all frames.
On Wednesday 11. December 2024, 08:17:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_33_p1

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.1 excluded cameras. 
  Frames 201 to 202 were interpolated.
Mean reprojection error for RIndex is 2.3 px (~ 0.01 m), reached with 1.1 excluded cameras. 
  Frames 55 to 55, 76 to 76, 122 to 122, 124 to 126, 130 to 131, 140 to 141, 145 to 145, 149 to 158, 160 to 167, 169 to 169, 171 to 173, 175 to 176, 217 to 217, 237 to 237, 241 to 246, 248 to 248, 268 to 268, 270 to 270, 272 to 272, 279 to 279 were interpolated.
  Frames ['190:215', '219:231'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.49 excluded cameras. 
  Frames 54 to 54, 62 to 63, 122 to 123, 150 to 150, 153 to 153, 165 to 166, 170 to 170, 172 to 173, 176 to 177, 179 to 180, 182 to 182, 184 to 184, 186 to 188, 195 to 195, 197 to 197, 238 to 238 were interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.8 px (~ 0.012 m), reached with 0.21 excluded cameras. 
  Frames 70 to 70, 116 to 117, 163 to 163 were interpolated.
Mean reprojection error for LIndex is 2.8 px (~ 0.012 m), reached with 0.16 excluded cameras. 
  Frames 80 to 80, 84 to 85 were interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.32 excluded cameras. 
  Frames 79 to 79, 120 to 120, 125 to 125, 160 to 160 were interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.09 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 4% of the time, Camera cam3: 3%, and Camera cam1: 2%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_33_p1\pose-3d\0_1_33_p1_0-333.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_34_p1, for all frames.
On Wednesday 11. December 2024, 08:17:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_34_p1

Mean reprojection error for RHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.21 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.21 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.9 px (~ 0.013 m), reached with 0.23 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.25 excluded cameras. 
  Frames 80 to 80 were interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.22 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.2 px (~ 0.014 m), reached with 0.15 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.24 excluded cameras. 
  Frames 68 to 75, 77 to 78, 80 to 80 were interpolated.
Mean reprojection error for LThumb is 3.4 px (~ 0.015 m), reached with 0.28 excluded cameras. 
  No frames needed to be interpolated.
  Frames ['67:81'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LIndex is 3.3 px (~ 0.015 m), reached with 0.3 excluded cameras. 
  Frames 53 to 54, 56 to 56 were interpolated.
  Frames ['67:81'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.29 excluded cameras. 
  No frames needed to be interpolated.
  Frames ['66:81'] could not be interpolated: consider adjusting thresholds.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.09 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 5% of the time, Camera cam1: 3%, and Camera cam2: 1%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_34_p1\pose-3d\0_1_34_p1_0-240.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_35_p1, for all frames.
On Wednesday 11. December 2024, 08:17:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_35_p1

Mean reprojection error for RHip is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.4 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 4.3 px (~ 0.019 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.8 px (~ 0.017 m), reached with 0.16 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.13 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.11 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.1 px (~ 0.018 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.8 px (~ 0.017 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.3 px, which roughly corresponds to 14.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.03 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 2% of the time, Camera cam1: 1%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_35_p1\pose-3d\0_1_35_p1_0-310.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_45_p1, for all frames.
On Wednesday 11. December 2024, 08:17:42
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_45_p1

Mean reprojection error for RHip is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.5 px (~ 0.024 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.5 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_45_p1\pose-3d\0_1_45_p1_0-261.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_46_p1, for all frames.
On Wednesday 11. December 2024, 08:17:44
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_46_p1

Mean reprojection error for RHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.3 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.6 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.9 px (~ 0.017 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.9 px (~ 0.017 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.3 px (~ 0.019 m), reached with 0.05 excluded cameras. 
  Frames 182 to 182 were interpolated.
Mean reprojection error for LPinky is 4.5 px (~ 0.02 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.4 px, which roughly corresponds to 15.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_46_p1\pose-3d\0_1_46_p1_0-339.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_47_p1, for all frames.
On Wednesday 11. December 2024, 08:17:47
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_47_p1

Mean reprojection error for RHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.6 px (~ 0.02 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.0 px (~ 0.018 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.2 px, which roughly corresponds to 14.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_47_p1\pose-3d\0_1_47_p1_0-350.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_48_p1, for all frames.
On Wednesday 11. December 2024, 08:17:50
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_48_p1

Mean reprojection error for RHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_48_p1\pose-3d\0_1_48_p1_0-353.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_49_p1, for all frames.
On Wednesday 11. December 2024, 08:17:52
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_49_p1

Mean reprojection error for RHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.5 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.7 px (~ 0.016 m), reached with 0.07 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_49_p1\pose-3d\0_1_49_p1_0-225.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_50_p1, for all frames.
On Wednesday 11. December 2024, 08:17:54
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_50_p1

Mean reprojection error for RHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.04 excluded cameras. 
  Frames 224 to 224 were interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_50_p1\pose-3d\0_1_50_p1_0-292.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_51_p1, for all frames.
On Wednesday 11. December 2024, 08:17:57
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_51_p1

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.4 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.3 px (~ 0.015 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.0 px (~ 0.018 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_51_p1\pose-3d\0_1_51_p1_0-232.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_52_p1, for all frames.
On Wednesday 11. December 2024, 08:17:58
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_52_p1

Mean reprojection error for RHip is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.4 px (~ 0.011 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.5 px (~ 0.015 m), reached with 0.02 excluded cameras. 
  Frames 302 to 303 were interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.03 excluded cameras. 
  Frames 303 to 303 were interpolated.
Mean reprojection error for LPinky is 3.6 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_52_p1\pose-3d\0_1_52_p1_0-423.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_53_p1, for all frames.
On Wednesday 11. December 2024, 08:18:02
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_53_p1

Mean reprojection error for RHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.8 px (~ 0.017 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.4 px (~ 0.019 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.9 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_53_p1\pose-3d\0_1_53_p1_0-279.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_10_p1, for all frames.
On Wednesday 11. December 2024, 08:18:04
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_10_p1

Mean reprojection error for RHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_10_p1\pose-3d\0_1_10_p1_0-318.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_9_p1, for all frames.
On Wednesday 11. December 2024, 08:18:07
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_9_p1

Mean reprojection error for RHip is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.3 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 6.0 px (~ 0.027 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_9_p1\pose-3d\0_1_9_p1_0-324.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_tpose_p0, for all frames.
On Wednesday 11. December 2024, 08:18:10
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0\pose-3d\0_1_tpose_p0_0-197_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_0_p0, for all frames.
On Wednesday 11. December 2024, 08:18:11
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0\pose-3d\0_1_0_p0_0-299_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_3_p0, for all frames.
On Wednesday 11. December 2024, 08:18:11
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0\pose-3d\0_1_3_p0_0-533_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_4_p0, for all frames.
On Wednesday 11. December 2024, 08:18:11
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_4_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_4_p0\pose-3d\0_1_4_p0_0-276_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_5_p0, for all frames.
On Wednesday 11. December 2024, 08:18:11
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_5_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_5_p0\pose-3d\0_1_5_p0_0-175_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_6_p0, for all frames.
On Wednesday 11. December 2024, 08:18:11
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_6_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_6_p0\pose-3d\0_1_6_p0_0-223_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_7_p0, for all frames.
On Wednesday 11. December 2024, 08:18:11
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_7_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_7_p0\pose-3d\0_1_7_p0_0-226_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_19_p0, for all frames.
On Wednesday 11. December 2024, 08:18:11
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_19_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_19_p0\pose-3d\0_1_19_p0_0-352_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_20_p0, for all frames.
On Wednesday 11. December 2024, 08:18:12
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_20_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_20_p0\pose-3d\0_1_20_p0_0-232_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_21_p0, for all frames.
On Wednesday 11. December 2024, 08:18:12
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_21_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_21_p0\pose-3d\0_1_21_p0_0-215_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_22_p0, for all frames.
On Wednesday 11. December 2024, 08:18:12
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_22_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_22_p0\pose-3d\0_1_22_p0_0-274_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_23_p0, for all frames.
On Wednesday 11. December 2024, 08:18:12
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_23_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_23_p0\pose-3d\0_1_23_p0_0-231_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_24_p0, for all frames.
On Wednesday 11. December 2024, 08:18:12
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_24_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_24_p0\pose-3d\0_1_24_p0_0-342_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_25_p0, for all frames.
On Wednesday 11. December 2024, 08:18:12
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_25_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_25_p0\pose-3d\0_1_25_p0_0-370_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_26_p0, for all frames.
On Wednesday 11. December 2024, 08:18:12
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_26_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_26_p0\pose-3d\0_1_26_p0_0-249_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_36_p0, for all frames.
On Wednesday 11. December 2024, 08:18:13
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_36_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_36_p0\pose-3d\0_1_36_p0_0-295_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_37_p0, for all frames.
On Wednesday 11. December 2024, 08:18:13
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_37_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_37_p0\pose-3d\0_1_37_p0_0-238_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_38_p0, for all frames.
On Wednesday 11. December 2024, 08:18:13
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_38_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_38_p0\pose-3d\0_1_38_p0_0-322_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_39_p0, for all frames.
On Wednesday 11. December 2024, 08:18:13
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_39_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_39_p0\pose-3d\0_1_39_p0_0-427_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_40_p0, for all frames.
On Wednesday 11. December 2024, 08:18:13
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_40_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_40_p0\pose-3d\0_1_40_p0_0-182_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_41_p0, for all frames.
On Wednesday 11. December 2024, 08:18:13
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_41_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_41_p0\pose-3d\0_1_41_p0_0-364_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_42_p0, for all frames.
On Wednesday 11. December 2024, 08:18:13
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_42_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_42_p0\pose-3d\0_1_42_p0_0-265_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_43_p0, for all frames.
On Wednesday 11. December 2024, 08:18:13
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_43_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_43_p0\pose-3d\0_1_43_p0_0-253_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_44_p0, for all frames.
On Wednesday 11. December 2024, 08:18:14
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_44_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_44_p0\pose-3d\0_1_44_p0_0-333_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_1_p0, for all frames.
On Wednesday 11. December 2024, 08:18:14
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_1_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_1_p0\pose-3d\0_1_1_p0_0-139_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_18_p0, for all frames.
On Wednesday 11. December 2024, 08:18:14
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0\pose-3d\0_1_18_p0_0-389_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_2_p0, for all frames.
On Wednesday 11. December 2024, 08:18:14
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_2_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_2_p0\pose-3d\0_1_2_p0_0-165_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_8_p0, for all frames.
On Wednesday 11. December 2024, 08:18:14
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_8_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_8_p0\pose-3d\0_1_8_p0_0-170_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_tpose_p1, for all frames.
On Wednesday 11. December 2024, 08:18:14
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_tpose_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_tpose_p1\pose-3d\0_1_tpose_p1_0-236_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_11_p1, for all frames.
On Wednesday 11. December 2024, 08:18:14
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_11_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_11_p1\pose-3d\0_1_11_p1_0-187_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_12_p1, for all frames.
On Wednesday 11. December 2024, 08:18:15
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_12_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_12_p1\pose-3d\0_1_12_p1_0-218_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_13_p1, for all frames.
On Wednesday 11. December 2024, 08:18:15
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_13_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_13_p1\pose-3d\0_1_13_p1_0-202_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_14_p1, for all frames.
On Wednesday 11. December 2024, 08:18:15
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_14_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_14_p1\pose-3d\0_1_14_p1_0-306_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_15_p1, for all frames.
On Wednesday 11. December 2024, 08:18:15
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_15_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_15_p1\pose-3d\0_1_15_p1_0-239_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_16_p1, for all frames.
On Wednesday 11. December 2024, 08:18:15
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_16_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_16_p1\pose-3d\0_1_16_p1_0-211_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_17_p1, for all frames.
On Wednesday 11. December 2024, 08:18:15
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_17_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_17_p1\pose-3d\0_1_17_p1_0-255_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_27_p1, for all frames.
On Wednesday 11. December 2024, 08:18:15
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_27_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_27_p1\pose-3d\0_1_27_p1_0-361_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_28_p1, for all frames.
On Wednesday 11. December 2024, 08:18:15
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_28_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_28_p1\pose-3d\0_1_28_p1_0-279_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_29_p1, for all frames.
On Wednesday 11. December 2024, 08:18:16
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_29_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_29_p1\pose-3d\0_1_29_p1_0-261_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_30_p1, for all frames.
On Wednesday 11. December 2024, 08:18:16
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_30_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_30_p1\pose-3d\0_1_30_p1_0-226_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_31_p1, for all frames.
On Wednesday 11. December 2024, 08:18:16
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_31_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_31_p1\pose-3d\0_1_31_p1_0-230_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_32_p1, for all frames.
On Wednesday 11. December 2024, 08:18:16
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_32_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_32_p1\pose-3d\0_1_32_p1_0-299_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_33_p1, for all frames.
On Wednesday 11. December 2024, 08:18:16
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_33_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_33_p1\pose-3d\0_1_33_p1_0-333_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_34_p1, for all frames.
On Wednesday 11. December 2024, 08:18:16
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_34_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_34_p1\pose-3d\0_1_34_p1_0-240_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_35_p1, for all frames.
On Wednesday 11. December 2024, 08:18:16
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_35_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_35_p1\pose-3d\0_1_35_p1_0-310_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_45_p1, for all frames.
On Wednesday 11. December 2024, 08:18:16
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_45_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_45_p1\pose-3d\0_1_45_p1_0-261_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_46_p1, for all frames.
On Wednesday 11. December 2024, 08:18:16
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_46_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_46_p1\pose-3d\0_1_46_p1_0-339_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_47_p1, for all frames.
On Wednesday 11. December 2024, 08:18:17
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_47_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_47_p1\pose-3d\0_1_47_p1_0-350_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_48_p1, for all frames.
On Wednesday 11. December 2024, 08:18:17
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_48_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_48_p1\pose-3d\0_1_48_p1_0-353_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_49_p1, for all frames.
On Wednesday 11. December 2024, 08:18:17
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_49_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_49_p1\pose-3d\0_1_49_p1_0-225_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_50_p1, for all frames.
On Wednesday 11. December 2024, 08:18:17
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_50_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_50_p1\pose-3d\0_1_50_p1_0-292_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_51_p1, for all frames.
On Wednesday 11. December 2024, 08:18:17
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_51_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_51_p1\pose-3d\0_1_51_p1_0-232_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_52_p1, for all frames.
On Wednesday 11. December 2024, 08:18:17
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_52_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_52_p1\pose-3d\0_1_52_p1_0-423_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_53_p1, for all frames.
On Wednesday 11. December 2024, 08:18:17
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_53_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_53_p1\pose-3d\0_1_53_p1_0-279_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_10_p1, for all frames.
On Wednesday 11. December 2024, 08:18:18
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_10_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_10_p1\pose-3d\0_1_10_p1_0-318_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_9_p1, for all frames.
On Wednesday 11. December 2024, 08:18:18
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_9_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_9_p1\pose-3d\0_1_9_p1_0-324_filt_butterworth.trc.



---------------------------------------------------------------------
Triangulation of 2D points for 0_2_0_p0, for all frames.
On Wednesday 11. December 2024, 08:18:20
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_0_p0

Mean reprojection error for RHip is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.8 px (~ 0.012 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 11.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_0_p0\pose-3d\0_2_0_p0_0-188.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_1_p0, for all frames.
On Wednesday 11. December 2024, 08:18:22
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_1_p0

Mean reprojection error for RHip is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.09 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.09 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.13 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.7 px (~ 0.016 m), reached with 0.12 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.6 px (~ 0.016 m), reached with 0.11 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 2% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_1_p0\pose-3d\0_2_1_p0_0-222.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_2_p0, for all frames.
On Wednesday 11. December 2024, 08:18:23
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_2_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.6 px (~ 0.011 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.5 px (~ 0.02 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.7 px (~ 0.016 m), reached with 0.11 excluded cameras. 
  Frames 50 to 51, 53 to 54, 67 to 67, 72 to 72 were interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.09 excluded cameras. 
  Frames 71 to 71, 83 to 83 were interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.3 px (~ 0.015 m), reached with 0.25 excluded cameras. 
  Frames 260 to 267, 281 to 284, 292 to 300 were interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.12 excluded cameras. 
  Frames 265 to 267, 280 to 282 were interpolated.
Mean reprojection error for LThumb is 3.4 px (~ 0.015 m), reached with 0.09 excluded cameras. 
  Frames 267 to 267, 280 to 280 were interpolated.
Mean reprojection error for LIndex is 3.5 px (~ 0.015 m), reached with 0.13 excluded cameras. 
  Frames 266 to 267, 280 to 281 were interpolated.
Mean reprojection error for LPinky is 3.5 px (~ 0.015 m), reached with 0.13 excluded cameras. 
  Frames 118 to 118, 266 to 267, 281 to 281 were interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.04 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 2% of the time, Camera cam2: 2%, and Camera cam3: 1%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_2_p0\pose-3d\0_2_2_p0_0-403.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_3_p0, for all frames.
On Wednesday 11. December 2024, 08:18:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_3_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.07 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_3_p0\pose-3d\0_2_3_p0_0-153.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_4_p0, for all frames.
On Wednesday 11. December 2024, 08:18:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_4_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  Frames 261 to 261 were interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_4_p0\pose-3d\0_2_4_p0_0-600.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m04s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_5_p0, for all frames.
On Wednesday 11. December 2024, 08:18:32
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_5_p0

Mean reprojection error for RHip is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_5_p0\pose-3d\0_2_5_p0_0-179.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_6_p0, for all frames.
On Wednesday 11. December 2024, 08:18:34
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_6_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 11.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_6_p0\pose-3d\0_2_6_p0_0-318.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_7_p0, for all frames.
On Wednesday 11. December 2024, 08:18:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_7_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.9 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.1 px (~ 0.018 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 11.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_7_p0\pose-3d\0_2_7_p0_0-472.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_8_p0, for all frames.
On Wednesday 11. December 2024, 08:18:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_8_p0

Mean reprojection error for RHip is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_8_p0\pose-3d\0_2_8_p0_0-189.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_9_p0, for all frames.
On Wednesday 11. December 2024, 08:18:42
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_9_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_9_p0\pose-3d\0_2_9_p0_0-232.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_10_p0, for all frames.
On Wednesday 11. December 2024, 08:18:43
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_10_p0


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_tpose_p0, for all frames.
On Wednesday 11. December 2024, 08:20:14
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0

Mean reprojection error for RHip is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0\pose-3d\0_1_tpose_p0_0-197.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_0_p0, for all frames.
On Wednesday 11. December 2024, 08:20:16
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0\pose-3d\0_1_0_p0_0-299.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_3_p0, for all frames.
On Wednesday 11. December 2024, 08:20:18
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0\pose-3d\0_1_3_p0_0-533.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m04s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_4_p0, for all frames.
On Wednesday 11. December 2024, 08:20:22
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_4_p0

Mean reprojection error for RHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_4_p0\pose-3d\0_1_4_p0_0-276.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_5_p0, for all frames.
On Wednesday 11. December 2024, 08:20:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_5_p0

Mean reprojection error for RHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_5_p0\pose-3d\0_1_5_p0_0-175.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_6_p0, for all frames.
On Wednesday 11. December 2024, 08:20:26
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_6_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_6_p0\pose-3d\0_1_6_p0_0-223.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_7_p0, for all frames.
On Wednesday 11. December 2024, 08:20:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_7_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_7_p0\pose-3d\0_1_7_p0_0-226.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_19_p0, for all frames.
On Wednesday 11. December 2024, 08:20:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_19_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.8 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.9 px (~ 0.017 m), reached with 0.16 excluded cameras. 
  Frames 200 to 200 were interpolated.
Mean reprojection error for RIndex is 4.4 px (~ 0.019 m), reached with 0.3 excluded cameras. 
  Frames 118 to 118, 121 to 121, 123 to 123, 226 to 228, 233 to 233 were interpolated.
Mean reprojection error for RPinky is 4.2 px (~ 0.019 m), reached with 0.39 excluded cameras. 
  Frames 123 to 126, 132 to 133, 169 to 169, 197 to 197, 224 to 225, 234 to 236, 240 to 242 were interpolated.
Mean reprojection error for LShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.3 px (~ 0.015 m), reached with 0.26 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 4.5 px (~ 0.02 m), reached with 0.12 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.7 px (~ 0.021 m), reached with 0.41 excluded cameras. 
  Frames 98 to 98, 141 to 141, 177 to 178, 190 to 190, 192 to 193, 198 to 200, 216 to 217, 219 to 220, 225 to 225, 238 to 238, 243 to 246 were interpolated.
Mean reprojection error for LIndex is 4.1 px (~ 0.018 m), reached with 0.55 excluded cameras. 
  Frames 138 to 141, 148 to 152, 172 to 172, 174 to 177, 184 to 185, 190 to 190, 192 to 193, 198 to 200, 216 to 217, 219 to 221, 232 to 232, 238 to 238, 243 to 247 were interpolated.
Mean reprojection error for LPinky is 4.3 px (~ 0.019 m), reached with 0.47 excluded cameras. 
  Frames 138 to 141, 177 to 179, 204 to 204, 216 to 217, 219 to 222, 232 to 232, 238 to 238, 243 to 247 were interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.1 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 5% of the time, Camera cam3: 3%, and Camera cam2: 2%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_19_p0\pose-3d\0_1_19_p0_0-352.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_20_p0, for all frames.
On Wednesday 11. December 2024, 08:20:32
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_20_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.8 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.14 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 1% of the time, Camera cam3: 0%, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_20_p0\pose-3d\0_1_20_p0_0-232.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_21_p0, for all frames.
On Wednesday 11. December 2024, 08:20:34
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_21_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.6 px (~ 0.003 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.18 excluded cameras. 
  Frames 163 to 163, 168 to 168 were interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_21_p0\pose-3d\0_1_21_p0_0-215.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_22_p0, for all frames.
On Wednesday 11. December 2024, 08:20:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_22_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.3 px, which roughly corresponds to 10.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_22_p0\pose-3d\0_1_22_p0_0-274.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_23_p0, for all frames.
On Wednesday 11. December 2024, 08:20:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_23_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.7 px (~ 0.003 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.3 px, which roughly corresponds to 10.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_23_p0\pose-3d\0_1_23_p0_0-231.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_24_p0, for all frames.
On Wednesday 11. December 2024, 08:20:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_24_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_24_p0\pose-3d\0_1_24_p0_0-342.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_25_p0, for all frames.
On Wednesday 11. December 2024, 08:20:43
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_25_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 0.9 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.09 excluded cameras. 
  Frames 271 to 273, 278 to 278 were interpolated.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.12 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.05 excluded cameras. 
  Frames 258 to 258 were interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.8 px (~ 0.017 m), reached with 0.03 excluded cameras. 
  Frames 233 to 233 were interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 1% of the time, Camera cam1: 1%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_25_p0\pose-3d\0_1_25_p0_0-370.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_26_p0, for all frames.
On Wednesday 11. December 2024, 08:20:46
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_26_p0

Mean reprojection error for RHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_26_p0\pose-3d\0_1_26_p0_0-249.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_36_p0, for all frames.
On Wednesday 11. December 2024, 08:20:48
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_36_p0

Mean reprojection error for RHip is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 11.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_36_p0\pose-3d\0_1_36_p0_0-295.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_37_p0, for all frames.
On Wednesday 11. December 2024, 08:20:50
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_37_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.8 px (~ 0.021 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.5 px (~ 0.015 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_37_p0\pose-3d\0_1_37_p0_0-238.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_38_p0, for all frames.
On Wednesday 11. December 2024, 08:20:52
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_38_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.23 excluded cameras. 
  Frames 128 to 128, 213 to 213, 218 to 218, 225 to 226 were interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.17 excluded cameras. 
  Frames 131 to 131, 177 to 177, 179 to 179, 213 to 213, 224 to 224 were interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 1% of the time, Camera cam3: 1%, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_38_p0\pose-3d\0_1_38_p0_0-322.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_39_p0, for all frames.
On Wednesday 11. December 2024, 08:20:55
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_39_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.4 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.6 px (~ 0.016 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.3 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  Frames 258 to 259 were interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_39_p0\pose-3d\0_1_39_p0_0-427.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_40_p0, for all frames.
On Wednesday 11. December 2024, 08:20:58
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_40_p0

Mean reprojection error for RHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.6 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.4 px (~ 0.019 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.4 px (~ 0.019 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.9 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_40_p0\pose-3d\0_1_40_p0_0-182.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_41_p0, for all frames.
On Wednesday 11. December 2024, 08:21:01
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_41_p0

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.5 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_41_p0\pose-3d\0_1_41_p0_0-364.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_42_p0, for all frames.
On Wednesday 11. December 2024, 08:21:04
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_42_p0

Mean reprojection error for RHip is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.6 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.5 px (~ 0.011 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.8 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.3 px, which roughly corresponds to 10.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_42_p0\pose-3d\0_1_42_p0_0-265.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_43_p0, for all frames.
On Wednesday 11. December 2024, 08:21:06
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_43_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.5 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_43_p0\pose-3d\0_1_43_p0_0-253.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_44_p0, for all frames.
On Wednesday 11. December 2024, 08:21:08
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_44_p0

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.4 excluded cameras. 
  Frames 216 to 219 were interpolated.
Mean reprojection error for LWrist is 4.0 px (~ 0.018 m), reached with 0.44 excluded cameras. 
  Frames 102 to 103, 215 to 220, 236 to 236 were interpolated.
Mean reprojection error for LThumb is 3.8 px (~ 0.017 m), reached with 0.62 excluded cameras. 
  Frames 102 to 103, 110 to 110, 112 to 115, 117 to 123, 132 to 132, 136 to 136, 140 to 140, 142 to 144, 152 to 152, 158 to 158, 160 to 161, 173 to 174, 182 to 183, 198 to 205, 207 to 207, 210 to 210, 213 to 220, 228 to 228, 230 to 230, 234 to 235 were interpolated.
Mean reprojection error for LIndex is 3.9 px (~ 0.017 m), reached with 0.64 excluded cameras. 
  Frames 101 to 103, 107 to 107, 110 to 110, 117 to 118, 135 to 135, 146 to 146, 157 to 157, 161 to 161, 168 to 168, 173 to 173, 175 to 175, 178 to 183, 185 to 187, 189 to 189, 191 to 193, 203 to 204, 207 to 207, 210 to 210, 213 to 220, 229 to 231, 233 to 234, 237 to 238 were interpolated.
Mean reprojection error for LPinky is 4.3 px (~ 0.019 m), reached with 0.78 excluded cameras. 
  Frames 101 to 105, 113 to 113, 117 to 117, 120 to 123, 127 to 130, 144 to 144, 147 to 147, 161 to 170, 172 to 173, 192 to 193, 197 to 197, 204 to 207, 210 to 210, 230 to 239 were interpolated.
  Frames ['175:189', '213:226'] could not be interpolated: consider adjusting thresholds.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.11 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 7% of the time, Camera cam2: 2%, and Camera cam3: 2%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_44_p0\pose-3d\0_1_44_p0_0-333.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_1_p0, for all frames.
On Wednesday 11. December 2024, 08:21:11
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_1_p0

Mean reprojection error for RHip is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_1_p0\pose-3d\0_1_1_p0_0-139.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_18_p0, for all frames.
On Wednesday 11. December 2024, 08:21:12
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.9 px (~ 0.013 m), reached with 0.02 excluded cameras. 
  Frames 212 to 214 were interpolated.
Mean reprojection error for RSmallToe is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.5 px (~ 0.011 m), reached with 0.07 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.4 px (~ 0.019 m), reached with 0.07 excluded cameras. 
  Frames 132 to 132 were interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.2 px (~ 0.019 m), reached with 0.22 excluded cameras. 
  Frames 104 to 104, 139 to 146, 188 to 190, 195 to 195, 197 to 199, 237 to 237, 240 to 240, 242 to 245 were interpolated.
Mean reprojection error for LWrist is 3.3 px (~ 0.015 m), reached with 0.15 excluded cameras. 
  Frames 144 to 146, 148 to 148, 188 to 192, 194 to 195, 239 to 240, 242 to 243 were interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.15 excluded cameras. 
  Frames 142 to 142, 188 to 190, 193 to 195, 240 to 240 were interpolated.
Mean reprojection error for LIndex is 3.4 px (~ 0.015 m), reached with 0.12 excluded cameras. 
  Frames 188 to 190, 193 to 194, 245 to 245 were interpolated.
Mean reprojection error for LPinky is 4.0 px (~ 0.018 m), reached with 0.12 excluded cameras. 
  Frames 141 to 141, 147 to 148, 188 to 190, 194 to 195, 198 to 199 were interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.04 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 2% of the time, Camera cam2: 1%, and Camera cam3: 1%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0\pose-3d\0_1_18_p0_0-389.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_2_p0, for all frames.
On Wednesday 11. December 2024, 08:21:15
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_2_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_2_p0\pose-3d\0_1_2_p0_0-165.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_8_p0, for all frames.
On Wednesday 11. December 2024, 08:21:17
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_8_p0

Mean reprojection error for RHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_8_p0\pose-3d\0_1_8_p0_0-170.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_tpose_p1, for all frames.
On Wednesday 11. December 2024, 08:21:18
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_tpose_p1

Mean reprojection error for RHip is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_tpose_p1\pose-3d\0_1_tpose_p1_0-236.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_11_p1, for all frames.
On Wednesday 11. December 2024, 08:21:20
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_11_p1

Mean reprojection error for RHip is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.5 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_11_p1\pose-3d\0_1_11_p1_0-187.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_12_p1, for all frames.
On Wednesday 11. December 2024, 08:21:22
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_12_p1

Mean reprojection error for RHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 5.7 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 5.7 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 11.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_12_p1\pose-3d\0_1_12_p1_0-218.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_13_p1, for all frames.
On Wednesday 11. December 2024, 08:21:23
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_13_p1

Mean reprojection error for RHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_13_p1\pose-3d\0_1_13_p1_0-202.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_14_p1, for all frames.
On Wednesday 11. December 2024, 08:21:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_14_p1


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_0_p0, for all frames.
On Wednesday 11. December 2024, 08:21:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_0_p0

Mean reprojection error for RHip is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.8 px (~ 0.012 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 11.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_0_p0\pose-3d\0_2_0_p0_0-188.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_1_p0, for all frames.
On Wednesday 11. December 2024, 08:21:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_1_p0

Mean reprojection error for RHip is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.09 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.09 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.13 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.7 px (~ 0.016 m), reached with 0.12 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.6 px (~ 0.016 m), reached with 0.11 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 2% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_1_p0\pose-3d\0_2_1_p0_0-222.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_2_p0, for all frames.
On Wednesday 11. December 2024, 08:21:31
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_2_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.6 px (~ 0.011 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.5 px (~ 0.02 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.7 px (~ 0.016 m), reached with 0.11 excluded cameras. 
  Frames 50 to 51, 53 to 54, 67 to 67, 72 to 72 were interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.09 excluded cameras. 
  Frames 71 to 71, 83 to 83 were interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.3 px (~ 0.015 m), reached with 0.25 excluded cameras. 
  Frames 260 to 267, 281 to 284, 292 to 300 were interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.12 excluded cameras. 
  Frames 265 to 267, 280 to 282 were interpolated.
Mean reprojection error for LThumb is 3.4 px (~ 0.015 m), reached with 0.09 excluded cameras. 
  Frames 267 to 267, 280 to 280 were interpolated.
Mean reprojection error for LIndex is 3.5 px (~ 0.015 m), reached with 0.13 excluded cameras. 
  Frames 266 to 267, 280 to 281 were interpolated.
Mean reprojection error for LPinky is 3.5 px (~ 0.015 m), reached with 0.13 excluded cameras. 
  Frames 118 to 118, 266 to 267, 281 to 281 were interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.04 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 2% of the time, Camera cam2: 2%, and Camera cam3: 1%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_2_p0\pose-3d\0_2_2_p0_0-403.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_3_p0, for all frames.
On Wednesday 11. December 2024, 08:21:34
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_3_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.5 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.07 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_3_p0\pose-3d\0_2_3_p0_0-153.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_4_p0, for all frames.
On Wednesday 11. December 2024, 08:21:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_4_p0


---------------------------------------------------------------------
Camera calibration
On Wednesday 11. December 2024, 08:39:44
---------------------------------------------------------------------

Calibration directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\calibration

Calculating intrinsic parameters...

Camera cam1:
frame_3.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_6.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_9.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_12.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_15.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_18.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_21.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_24.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_27.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_30.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_33.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_36.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_39.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_42.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_45.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_48.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_51.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_54.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_57.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_60.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_63.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_66.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_69.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_72.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_75.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_78.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_81.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_84.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_87.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_90.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_93.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_96.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_99.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_102.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_105.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_108.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_111.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_114.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_117.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_120.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_123.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_126.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_129.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_132.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_135.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_138.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_141.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_144.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_147.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_150.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_153.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_156.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_159.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_162.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_165.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_168.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_171.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_174.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_177.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_180.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_183.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_186.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_189.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_192.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_195.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_198.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_201.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_204.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_207.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_210.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_213.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_216.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_219.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_222.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_225.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_228.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_231.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_234.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_237.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_240.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_243.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_246.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_249.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_252.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_255.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_258.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_261.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_264.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_267.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_270.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_273.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_276.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_279.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_282.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_285.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_288.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_291.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_294.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_297.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_300.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_303.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_306.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_309.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_312.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_315.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_318.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_321.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_324.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_327.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_330.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_333.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_336.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_339.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_342.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_345.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_348.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_351.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_354.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_357.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_360.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_363.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_366.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_369.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_372.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_375.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_378.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_381.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_384.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_387.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_390.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_393.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_396.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_399.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_402.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_405.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_408.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_411.png: Corners found.
frame_414.png: Corners found.
frame_417.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_420.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_423.png: Corners found.
frame_426.png: Corners found.
frame_429.png: Corners found.
frame_432.png: Corners found.
frame_435.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_438.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_441.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_444.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_447.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_450.png: Corners found.
frame_453.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_456.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_459.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_462.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_465.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_468.png: Corners found.
frame_471.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_474.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_477.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_480.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_483.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_486.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_489.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_492.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_495.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_498.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_501.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_504.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_507.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_510.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_513.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_516.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_519.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_522.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_525.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_528.png: Corners found.
frame_531.png: Corners found.
frame_534.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_537.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_540.png: Corners found.
frame_543.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_546.png: Corners found.
frame_549.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_552.png: Corners found.
frame_555.png: Corners found.
frame_558.png: Corners found.
frame_561.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_564.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_567.png: Corners found.
frame_570.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_573.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_576.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_579.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_582.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_585.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_588.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_591.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_594.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_597.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_600.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_603.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_606.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_609.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_612.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_615.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_618.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_621.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_624.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_627.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_630.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_633.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_636.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_639.png: Corners found.
frame_642.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_645.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_648.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_651.png: Corners found.
frame_654.png: Corners found.
frame_657.png: Corners found.
frame_660.png: Corners found.
frame_663.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_666.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_669.png: Corners found.
frame_672.png: Corners found.
frame_675.png: Corners found.
frame_678.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_681.png: Corners found.
frame_684.png: Corners found.
frame_687.png: Corners found.
frame_690.png: Corners found.
frame_693.png: Corners found.
frame_696.png: Corners found.
frame_699.png: Corners found.
frame_702.png: Corners found.
frame_705.png: Corners found.
frame_708.png: Corners found.
frame_711.png: Corners found.
frame_714.png: Corners found.
frame_717.png: Corners found.
frame_720.png: Corners found.
frame_723.png: Corners found.
frame_726.png: Corners found.
frame_729.png: Corners found.
frame_732.png: Corners found.
frame_735.png: Corners found.
frame_738.png: Corners found.
frame_741.png: Corners found.
frame_744.png: Corners found.
frame_747.png: Corners found.
frame_750.png: Corners found.
frame_753.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_756.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_759.png: Corners found.
frame_762.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_765.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_768.png: Corners found.
frame_771.png: Corners found.
frame_774.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_777.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_780.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_783.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_786.png: Corners found.
frame_789.png: Corners found.
frame_792.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_795.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_798.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_801.png: Corners found.
frame_804.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_807.png: Corners found.
frame_810.png: Corners found.
frame_813.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_816.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_819.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_822.png: Corners found.
frame_825.png: Corners found.
frame_828.png: Corners found.
frame_831.png: Corners found.
frame_834.png: Corners found.
frame_837.png: Corners found.
frame_840.png: Corners found.
frame_843.png: Corners found.
frame_846.png: Corners found.
frame_849.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_852.png: Corners found.
frame_855.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_858.png: Corners found.
frame_861.png: Corners found.
frame_864.png: Corners found.
frame_867.png: Corners found.
frame_870.png: Corners found.
frame_873.png: Corners found.
frame_876.png: Corners found.
frame_879.png: Corners found.
frame_882.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_885.png: Corners found.
frame_888.png: Corners found.
frame_891.png: Corners found.
frame_894.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_897.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_900.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_903.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_906.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_909.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_912.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_915.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_918.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_921.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_924.png: Corners found.
frame_927.png: Corners found.
frame_930.png: Corners found.
frame_933.png: Corners found.
frame_936.png: Corners found.
frame_939.png: Corners found.
frame_942.png: Corners found.
frame_945.png: Corners found.
frame_948.png: Corners found.
frame_951.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_954.png: Corners found.
frame_957.png: Corners found.
frame_960.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_963.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_966.png: Corners found.
frame_969.png: Corners found.
frame_972.png: Corners found.
frame_975.png: Corners found.
frame_978.png: Corners found.
frame_981.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_984.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_987.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_990.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_993.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_996.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_999.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1002.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1005.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1008.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1011.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1014.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1017.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1020.png: Corners found.
frame_1023.png: Corners found.
frame_1026.png: Corners found.
frame_1029.png: Corners found.
frame_1032.png: Corners found.
frame_1035.png: Corners found.
frame_1038.png: Corners found.
frame_1041.png: Corners found.
frame_1044.png: Corners found.
frame_1047.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1050.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1053.png: Corners found.
frame_1056.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1059.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1062.png: Corners found.
frame_1065.png: Corners found.
frame_1068.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1071.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1074.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1077.png: Corners found.
frame_1080.png: Corners found.
frame_1083.png: Corners found.
frame_1086.png: Corners found.
frame_1089.png: Corners found.
frame_1092.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1095.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1098.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1101.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1104.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1107.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1110.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1113.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1116.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1119.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1122.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1125.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1128.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1131.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1134.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1137.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1140.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1143.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1146.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1149.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1152.png: Corners found.
frame_1155.png: Corners found.
frame_1158.png: Corners found.
frame_1161.png: Corners found.
frame_1164.png: Corners found.
frame_1167.png: Corners found.
frame_1170.png: Corners found.
frame_1173.png: Corners found.
frame_1176.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1179.png: Corners found.
frame_1182.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1185.png: Corners found.
frame_1188.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1191.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1194.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1197.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1200.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1203.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1206.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1209.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1212.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1215.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1218.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1221.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1224.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1227.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1230.png: Corners found.
frame_1233.png: Corners found.
frame_1236.png: Corners found.
frame_1239.png: Corners found.
frame_1242.png: Corners found.
frame_1245.png: Corners found.
frame_1248.png: Corners found.
frame_1251.png: Corners found.
frame_1254.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1257.png: Corners found.
frame_1260.png: Corners found.
frame_1263.png: Corners found.
frame_1266.png: Corners found.
frame_1269.png: Corners found.
frame_1272.png: Corners found.
frame_1275.png: Corners found.
frame_1278.png: Corners found.
frame_1281.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1284.png: Corners found.
frame_1287.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1290.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1293.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1296.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1299.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1302.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1305.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1308.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1311.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1314.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1317.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1320.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1323.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1326.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1329.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1332.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1335.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1338.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1341.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1344.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1347.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1350.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1353.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1356.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1359.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1362.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1365.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1368.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1371.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1374.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1377.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1380.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1383.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1386.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1389.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1392.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1395.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1398.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1401.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1404.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1407.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1410.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1413.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1416.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1419.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1422.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1425.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1428.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1431.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1434.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1437.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1440.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1443.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1446.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1449.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1452.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1455.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1458.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1461.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1464.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1467.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1470.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1473.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1476.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1479.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1482.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1485.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1488.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1491.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1494.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1497.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1500.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1503.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1506.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1509.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1512.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1515.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1518.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1521.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1524.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1527.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1530.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1533.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1536.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1539.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1542.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1545.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1548.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1551.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1554.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1557.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1560.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1563.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1566.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1569.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1572.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1575.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1578.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1581.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1584.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1587.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1590.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1593.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1596.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1599.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1602.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1605.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1608.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1611.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1614.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1617.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1620.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1623.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1626.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1629.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1632.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1635.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1638.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1641.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1644.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1647.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1650.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1653.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1656.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1659.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1662.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1665.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1668.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1671.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1674.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1677.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1680.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1683.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1686.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1689.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1692.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1695.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1698.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1701.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1704.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1707.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1710.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1713.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1716.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1719.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1722.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1725.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1728.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1731.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1734.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1737.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1740.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1743.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1746.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1749.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1752.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1755.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1758.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1761.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1764.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1767.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1770.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1773.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1776.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1779.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1782.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1785.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1788.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1791.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1794.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1797.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1800.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1803.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1806.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1809.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1812.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1815.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1818.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1821.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1824.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1827.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1830.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1833.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1836.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1839.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1842.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1845.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1848.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1851.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1854.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1857.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1860.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1863.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1866.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1869.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1872.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1875.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1878.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1881.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1884.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1887.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1890.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1893.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1896.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1899.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1902.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1905.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1908.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1911.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1914.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1917.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1920.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1923.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1926.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1929.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1932.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1935.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1938.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1941.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1944.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1947.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1950.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1953.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1956.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1959.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1962.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1965.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1968.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1971.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1974.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1977.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1980.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1983.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1986.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1989.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1992.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1995.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1998.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2001.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2004.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2007.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2010.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2013.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2016.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2019.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2022.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2025.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2028.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2031.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2034.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2037.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2040.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2043.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2046.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2049.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2052.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2055.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2058.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2061.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2064.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2067.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2070.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2073.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2076.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2079.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2082.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2085.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2088.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2091.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2094.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2097.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2100.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2103.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2106.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2109.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2112.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2115.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2118.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2121.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2124.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2127.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2130.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2133.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2136.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2139.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2142.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2145.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2148.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2151.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2154.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2157.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2160.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2163.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2166.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2169.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2172.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2175.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2178.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2181.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2184.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2187.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2190.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2193.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2196.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2199.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2202.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2205.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2208.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2211.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2214.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2217.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2220.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2223.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2226.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2229.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2232.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2235.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2238.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2241.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2244.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2247.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2250.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2253.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2256.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2259.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2262.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2265.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2268.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2271.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2274.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2277.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2280.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2283.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2286.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2289.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2292.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2295.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2298.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2301.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2304.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2307.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2310.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2313.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2316.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2319.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2322.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2325.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2328.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2331.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2334.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2337.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2340.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2343.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2346.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2349.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2352.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2355.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2358.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2361.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2364.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2367.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2370.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2373.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2376.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2379.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2382.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2385.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2388.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2391.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2394.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2397.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2400.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2403.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2406.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2409.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2412.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2415.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2418.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2421.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2424.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2427.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2430.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2433.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2436.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2439.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2442.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2445.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2448.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2451.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2454.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2457.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2460.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2463.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2466.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2469.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2472.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2475.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2478.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2481.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2484.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2487.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2490.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2493.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2496.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2499.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2502.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2505.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2508.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2511.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2514.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2517.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2520.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2523.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2526.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2529.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2532.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2535.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2538.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2541.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2544.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2547.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2550.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2553.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2556.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2559.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2562.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2565.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2568.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2571.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2574.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2577.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2580.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2583.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2586.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2589.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2592.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2595.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2598.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2601.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2604.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2607.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2610.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2613.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2616.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2619.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2622.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2625.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2628.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2631.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2634.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2637.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2640.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2643.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2646.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2649.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2652.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2655.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2658.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2661.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2664.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2667.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2670.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2673.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2676.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2679.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2682.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2685.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2688.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2691.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2694.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2697.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2700.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2703.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2706.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2709.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2712.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2715.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2718.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2721.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2724.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2727.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2730.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2733.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2736.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2739.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2742.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2745.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2748.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2751.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2754.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2757.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2760.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2763.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2766.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2769.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2772.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2775.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2778.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2781.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2784.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2787.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2790.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2793.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2796.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2799.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2802.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2805.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2808.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2811.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2814.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2817.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2820.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2823.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2826.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2829.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2832.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2835.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2838.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2841.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2844.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2847.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2850.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2853.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2856.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2859.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2862.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2865.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2868.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2871.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2874.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2877.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2880.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2883.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2886.png: Corners found.
frame_2889.png: Corners found.
frame_2892.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2895.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2898.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2901.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2904.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2907.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2910.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2913.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2916.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2919.png: Corners found.
frame_2922.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2925.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2928.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2931.png: Corners found.
frame_2934.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2937.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2940.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2943.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2946.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2949.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2952.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2955.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2958.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2961.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2964.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2967.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2970.png: Corners found.
frame_2973.png: Corners found.
frame_2976.png: Corners found.
frame_2979.png: Corners found.
frame_2982.png: Corners found.
frame_2985.png: Corners found.
frame_2988.png: Corners found.
frame_2991.png: Corners found.
frame_2994.png: Corners found.
frame_2997.png: Corners found.
frame_3000.png: Corners found.
frame_3003.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3006.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3009.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3012.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3015.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3018.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3021.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3024.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3027.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3030.png: Corners found.
frame_3033.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3036.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3039.png: Corners found.
frame_3042.png: Corners found.
frame_3045.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3048.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3051.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3054.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3057.png: Corners found.
frame_3060.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3063.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3066.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3069.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3072.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3075.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3078.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3081.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3084.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3087.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3090.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3093.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3096.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3099.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3102.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3105.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3108.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3111.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3114.png: Corners found.
frame_3117.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3120.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3123.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3126.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3129.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3132.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3135.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3138.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3141.png: Corners found.
frame_3144.png: Corners found.
frame_3147.png: Corners found.
frame_3150.png: Corners found.
frame_3153.png: Corners found.
frame_3156.png: Corners found.
frame_3159.png: Corners found.
frame_3162.png: Corners found.
frame_3165.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3168.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3171.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3174.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3177.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3180.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3183.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3186.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3189.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3192.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3195.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3198.png: Corners found.
frame_3201.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3204.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3207.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3210.png: Corners found.
frame_3213.png: Corners found.
frame_3216.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3219.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3222.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3225.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3228.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3231.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3234.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3237.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3240.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3243.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3246.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3249.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3252.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3255.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3258.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3261.png: Corners found.
frame_3264.png: Corners found.
frame_3267.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3270.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3273.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3276.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3279.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3282.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3285.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3288.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3291.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3294.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3297.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3300.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3303.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3306.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3309.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3312.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3315.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3318.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3321.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3324.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3327.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3330.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3333.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3336.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3339.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3342.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3345.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3348.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3351.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3354.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3357.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3360.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3363.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3366.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3369.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3372.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3375.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3378.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3381.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3384.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3387.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3390.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3393.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3396.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3399.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3402.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3405.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3408.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3411.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3414.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3417.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3420.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3423.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3426.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3429.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3432.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3435.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3438.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3441.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3444.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3447.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3450.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3453.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3456.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3459.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3462.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3465.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3468.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3471.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3474.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3477.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3480.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3483.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3486.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3489.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3492.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3495.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3498.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3501.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3504.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3507.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3510.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3513.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3516.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3519.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3522.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3525.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3528.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3531.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3534.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3537.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3540.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3543.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3546.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3549.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3552.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3555.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3558.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3561.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3564.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3567.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3570.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3573.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3576.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3579.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3582.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3585.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3588.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3591.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3594.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3597.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3600.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3603.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3606.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3609.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3612.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3615.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3618.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3621.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3624.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3627.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3630.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3633.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3636.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3639.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3642.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3645.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3648.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3651.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3654.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3657.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3660.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3663.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3666.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3669.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3672.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3675.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3678.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3681.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3684.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3687.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3690.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3693.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3696.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3699.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3702.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3705.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3708.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3711.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3714.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3717.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3720.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3723.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3726.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3729.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3732.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3735.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3738.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3741.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3744.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3747.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3750.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3753.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3756.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3759.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3762.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3765.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3768.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3771.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3774.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3777.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
Intrinsics error: 0.372 px for each cameras.

Camera cam2:
frame_3.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_6.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_9.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_12.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_15.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_18.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_21.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_24.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_27.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_30.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_33.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_36.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_39.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_42.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_45.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_48.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_51.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_54.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_57.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_60.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_63.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_66.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_69.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_72.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_75.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_78.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_81.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_84.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_87.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_90.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_93.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_96.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_99.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_102.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_105.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_108.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_111.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_114.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_117.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_120.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_123.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_126.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_129.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_132.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_135.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_138.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_141.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_144.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_147.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_150.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_153.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_156.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_159.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_162.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_165.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_168.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_171.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_174.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_177.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_180.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_183.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_186.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_189.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_192.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_195.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_198.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_201.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_204.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_207.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_210.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_213.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_216.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_219.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_222.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_225.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_228.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_231.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_234.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_237.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_240.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_243.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_246.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_249.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_252.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_255.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_258.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_261.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_264.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_267.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_270.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_273.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_276.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_279.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_282.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_285.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_288.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_291.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_294.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_297.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_300.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_303.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_306.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_309.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_312.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_315.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_318.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_321.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_324.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_327.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_330.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_333.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_336.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_339.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_342.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_345.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_348.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_351.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_354.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_357.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_360.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_363.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_366.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_369.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_372.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_375.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_378.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_381.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_384.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_387.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_390.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_393.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_396.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_399.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_402.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_405.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_408.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_411.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_414.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_417.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_420.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_423.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_426.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_429.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_432.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_435.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_438.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_441.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_444.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_447.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_450.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_453.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_456.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_459.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_462.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_465.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_468.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_471.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_474.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_477.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_480.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_483.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_486.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_489.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_492.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_495.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_498.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_501.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_504.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_507.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_510.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_513.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_516.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_519.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_522.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_525.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_528.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_531.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_534.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_537.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_540.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_543.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_546.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_549.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_552.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_555.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_558.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_561.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_564.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_567.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_570.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_573.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_576.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_579.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_582.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_585.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_588.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_591.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_594.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_597.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_600.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_603.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_606.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_609.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_612.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_615.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_618.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_621.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_624.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_627.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_630.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_633.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_636.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_639.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_642.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_645.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_648.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_651.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_654.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_657.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_660.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_663.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_666.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_669.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_672.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_675.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_678.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_681.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_684.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_687.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_690.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_693.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_696.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_699.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_702.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_705.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_708.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_711.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_714.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_717.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_720.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_723.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_726.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_729.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_732.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_735.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_738.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_741.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_744.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_747.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_750.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_753.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_756.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_759.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_762.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_765.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_768.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_771.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_774.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_777.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_780.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_783.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_786.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_789.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_792.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_795.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_798.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_801.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_804.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_807.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_810.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_813.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_816.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_819.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_822.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_825.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_828.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_831.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_834.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_837.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_840.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_843.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_846.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_849.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_852.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_855.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_858.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_861.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_864.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_867.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_870.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_873.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_876.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_879.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_882.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_885.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_888.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_891.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_894.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_897.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_900.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_903.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_906.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_909.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_912.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_915.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_918.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_921.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_924.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_927.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_930.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_933.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_936.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_939.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_942.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_945.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_948.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_951.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_954.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_957.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_960.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_963.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_966.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_969.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_972.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_975.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_978.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_981.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_984.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_987.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_990.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_993.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_996.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_999.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1002.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1005.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1008.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1011.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1014.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1017.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1020.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1023.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1026.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1029.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1032.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1035.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1038.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1041.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1044.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1047.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1050.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1053.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1056.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1059.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1062.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1065.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1068.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1071.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1074.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1077.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1080.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1083.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1086.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1089.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1092.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1095.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1098.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1101.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1104.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1107.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1110.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1113.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1116.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1119.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1122.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1125.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1128.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1131.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1134.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1137.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1140.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1143.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1146.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1149.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1152.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1155.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1158.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1161.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1164.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1167.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1170.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1173.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1176.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1179.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1182.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1185.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1188.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1191.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1194.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1197.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1200.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1203.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1206.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1209.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1212.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1215.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1218.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1221.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1224.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1227.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1230.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1233.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1236.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1239.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1242.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1245.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1248.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1251.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1254.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1257.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1260.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1263.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1266.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1269.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1272.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1275.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1278.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1281.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1284.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1287.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1290.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1293.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1296.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1299.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1302.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1305.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1308.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1311.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1314.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1317.png: Corners found.
frame_1320.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1323.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1326.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1329.png: Corners found.
frame_1332.png: Corners found.
frame_1335.png: Corners found.
frame_1338.png: Corners found.
frame_1341.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1344.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1347.png: Corners found.
frame_1350.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1353.png: Corners found.
frame_1356.png: Corners found.
frame_1359.png: Corners found.
frame_1362.png: Corners found.
frame_1365.png: Corners found.
frame_1368.png: Corners found.
frame_1371.png: Corners found.
frame_1374.png: Corners found.
frame_1377.png: Corners found.
frame_1380.png: Corners found.
frame_1383.png: Corners found.
frame_1386.png: Corners found.
frame_1389.png: Corners found.
frame_1392.png: Corners found.
frame_1395.png: Corners found.
frame_1398.png: Corners found.
frame_1401.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1404.png: Corners found.
frame_1407.png: Corners found.
frame_1410.png: Corners found.
frame_1413.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1416.png: Corners found.
frame_1419.png: Corners found.
frame_1422.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1425.png: Corners found.
frame_1428.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1431.png: Corners found.
frame_1434.png: Corners found.
frame_1437.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1440.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1443.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1446.png: Corners found.
frame_1449.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1452.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1455.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1458.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1461.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1464.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1467.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1470.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1473.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1476.png: Corners found.
frame_1479.png: Corners found.
frame_1482.png: Corners found.
frame_1485.png: Corners found.
frame_1488.png: Corners found.
frame_1491.png: Corners found.
frame_1494.png: Corners found.
frame_1497.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1500.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1503.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1506.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1509.png: Corners found.
frame_1512.png: Corners found.
frame_1515.png: Corners found.
frame_1518.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1521.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1524.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1527.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1530.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1533.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1536.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1539.png: Corners found.
frame_1542.png: Corners found.
frame_1545.png: Corners found.
frame_1548.png: Corners found.
frame_1551.png: Corners found.
frame_1554.png: Corners found.
frame_1557.png: Corners found.
frame_1560.png: Corners found.
frame_1563.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1566.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1569.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1572.png: Corners found.
frame_1575.png: Corners found.
frame_1578.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1581.png: Corners found.
frame_1584.png: Corners found.
frame_1587.png: Corners found.
frame_1590.png: Corners found.
frame_1593.png: Corners found.
frame_1596.png: Corners found.
frame_1599.png: Corners found.
frame_1602.png: Corners found.
frame_1605.png: Corners found.
frame_1608.png: Corners found.
frame_1611.png: Corners found.
frame_1614.png: Corners found.
frame_1617.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1620.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1623.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1626.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1629.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1632.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1635.png: Corners found.
frame_1638.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1641.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1644.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1647.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1650.png: Corners found.
frame_1653.png: Corners found.
frame_1656.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1659.png: Corners found.
frame_1662.png: Corners found.
frame_1665.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1668.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1671.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1674.png: Corners found.
frame_1677.png: Corners found.
frame_1680.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1683.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1686.png: Corners found.
frame_1689.png: Corners found.
frame_1692.png: Corners found.
frame_1695.png: Corners found.
frame_1698.png: Corners found.
frame_1701.png: Corners found.
frame_1704.png: Corners found.
frame_1707.png: Corners found.
frame_1710.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1713.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1716.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1719.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1722.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1725.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1728.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1731.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1734.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1737.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1740.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1743.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1746.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1749.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1752.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1755.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1758.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1761.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1764.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1767.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1770.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1773.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1776.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1779.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1782.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1785.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1788.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1791.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1794.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1797.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1800.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1803.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1806.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1809.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1812.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1815.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1818.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1821.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1824.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1827.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1830.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1833.png: Corners found.
frame_1836.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1839.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1842.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1845.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1848.png: Corners found.
frame_1851.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1854.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1857.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1860.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1863.png: Corners found.
frame_1866.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1869.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1872.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1875.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1878.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1881.png: Corners found.
frame_1884.png: Corners found.
frame_1887.png: Corners found.
frame_1890.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1893.png: Corners found.
frame_1896.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1899.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1902.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1905.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1908.png: Corners found.
frame_1911.png: Corners found.
frame_1914.png: Corners found.
frame_1917.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1920.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1923.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1926.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1929.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1932.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1935.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1938.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1941.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1944.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1947.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1950.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1953.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1956.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1959.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1962.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1965.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1968.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1971.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1974.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1977.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1980.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1983.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1986.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1989.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1992.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1995.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1998.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2001.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2004.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2007.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2010.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2013.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2016.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2019.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2022.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2025.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2028.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2031.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2034.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2037.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2040.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2043.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2046.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2049.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2052.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2055.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2058.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2061.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2064.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2067.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2070.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2073.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2076.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2079.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2082.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2085.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2088.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2091.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2094.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2097.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2100.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2103.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2106.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2109.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2112.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2115.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2118.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2121.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2124.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2127.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2130.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2133.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2136.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2139.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2142.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2145.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2148.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2151.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2154.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2157.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2160.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2163.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2166.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2169.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2172.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2175.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2178.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2181.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2184.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2187.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2190.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2193.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2196.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2199.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2202.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2205.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2208.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2211.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2214.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2217.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2220.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2223.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2226.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2229.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2232.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2235.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2238.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2241.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2244.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2247.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2250.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2253.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2256.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2259.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2262.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2265.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2268.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2271.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2274.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2277.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2280.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2283.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2286.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2289.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2292.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2295.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2298.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2301.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2304.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2307.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2310.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2313.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2316.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2319.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2322.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2325.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2328.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2331.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2334.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2337.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2340.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2343.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2346.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2349.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2352.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2355.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2358.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2361.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2364.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2367.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2370.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2373.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2376.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2379.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2382.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2385.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2388.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2391.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2394.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2397.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2400.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2403.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2406.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2409.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2412.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2415.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2418.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2421.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2424.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2427.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2430.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2433.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2436.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2439.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2442.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2445.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2448.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2451.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2454.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2457.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2460.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2463.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2466.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2469.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2472.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2475.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2478.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2481.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2484.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2487.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2490.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2493.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2496.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2499.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2502.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2505.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2508.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2511.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2514.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2517.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2520.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2523.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2526.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2529.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2532.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2535.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2538.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2541.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2544.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2547.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2550.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2553.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2556.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2559.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2562.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2565.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2568.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2571.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2574.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2577.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2580.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2583.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2586.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2589.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2592.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2595.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2598.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2601.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2604.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2607.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2610.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2613.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2616.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2619.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2622.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2625.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2628.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2631.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2634.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2637.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2640.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2643.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2646.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2649.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2652.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2655.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2658.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2661.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2664.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2667.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2670.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2673.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2676.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2679.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2682.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2685.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2688.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2691.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2694.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2697.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2700.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2703.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2706.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2709.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2712.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2715.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2718.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2721.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2724.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2727.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2730.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2733.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2736.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2739.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2742.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2745.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2748.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2751.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2754.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2757.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2760.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2763.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2766.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2769.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2772.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2775.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2778.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2781.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2784.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2787.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2790.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2793.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2796.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2799.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2802.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2805.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2808.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2811.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2814.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2817.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2820.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2823.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2826.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2829.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2832.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2835.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2838.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2841.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2844.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2847.png: Corners found.
frame_2850.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2853.png: Corners found.
frame_2856.png: Corners found.
frame_2859.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2862.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2865.png: Corners found.
frame_2868.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2871.png: Corners found.
frame_2874.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2877.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2880.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2883.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2886.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2889.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2892.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2895.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2898.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2901.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2904.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2907.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2910.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2913.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2916.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2919.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2922.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2925.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2928.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2931.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2934.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2937.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2940.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2943.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2946.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2949.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2952.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2955.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2958.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2961.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2964.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2967.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2970.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2973.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2976.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2979.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2982.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2985.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2988.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2991.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2994.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2997.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3000.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3003.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3006.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3009.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3012.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3015.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3018.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3021.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3024.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3027.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3030.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3033.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3036.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3039.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3042.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3045.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3048.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3051.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3054.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3057.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3060.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3063.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3066.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3069.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3072.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3075.png: Corners found.
frame_3078.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3081.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3084.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3087.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3090.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3093.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3096.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3099.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3102.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3105.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3108.png: Corners found.
frame_3111.png: Corners found.
frame_3114.png: Corners found.
frame_3117.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3120.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3123.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3126.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3129.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3132.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3135.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3138.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3141.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3144.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3147.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3150.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3153.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3156.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3159.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3162.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3165.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3168.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3171.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3174.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3177.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3180.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3183.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3186.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3189.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3192.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3195.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3198.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3201.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3204.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3207.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3210.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3213.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3216.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3219.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3222.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3225.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3228.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3231.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3234.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3237.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3240.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3243.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3246.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3249.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3252.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3255.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3258.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3261.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3264.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3267.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3270.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3273.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3276.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3279.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3282.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3285.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3288.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3291.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3294.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3297.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3300.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3303.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3306.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3309.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3312.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3315.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3318.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3321.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3324.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3327.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3330.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3333.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3336.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3339.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3342.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3345.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3348.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3351.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3354.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3357.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3360.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3363.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3366.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3369.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3372.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3375.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3378.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3381.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3384.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3387.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3390.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3393.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3396.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3399.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3402.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3405.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3408.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3411.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3414.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3417.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3420.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3423.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3426.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3429.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3432.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3435.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3438.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3441.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3444.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3447.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3450.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3453.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3456.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3459.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3462.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3465.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3468.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3471.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3474.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3477.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3480.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3483.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3486.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3489.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3492.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3495.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3498.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3501.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3504.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3507.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3510.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3513.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3516.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3519.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3522.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3525.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3528.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3531.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3534.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3537.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3540.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3543.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3546.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3549.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3552.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3555.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3558.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3561.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3564.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3567.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3570.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3573.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3576.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3579.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3582.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3585.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3588.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3591.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3594.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3597.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3600.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3603.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3606.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3609.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3612.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3615.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3618.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3621.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3624.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3627.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3630.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3633.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3636.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3639.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3642.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3645.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3648.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3651.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3654.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3657.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3660.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3663.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3666.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3669.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3672.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3675.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3678.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3681.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3684.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3687.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3690.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3693.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3696.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3699.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3702.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3705.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3708.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3711.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3714.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3717.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3720.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3723.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3726.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3729.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3732.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3735.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3738.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3741.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3744.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3747.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3750.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3753.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3756.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3759.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3762.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3765.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3768.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3771.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3774.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3777.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
Intrinsics error: 0.225 px for each cameras.

Camera cam3:
frame_3.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_6.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_9.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_12.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_15.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_18.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_21.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_24.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_27.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_30.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_33.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_36.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_39.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_42.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_45.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_48.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_51.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_54.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_57.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_60.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_63.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_66.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_69.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_72.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_75.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_78.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_81.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_84.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_87.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_90.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_93.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_96.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_99.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_102.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_105.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_108.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_111.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_114.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_117.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_120.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_123.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_126.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_129.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_132.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_135.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_138.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_141.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_144.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_147.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_150.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_153.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_156.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_159.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_162.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_165.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_168.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_171.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_174.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_177.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_180.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_183.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_186.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_189.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_192.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_195.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_198.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_201.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_204.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_207.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_210.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_213.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_216.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_219.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_222.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_225.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_228.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_231.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_234.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_237.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_240.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_243.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_246.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_249.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_252.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_255.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_258.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_261.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_264.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_267.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_270.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_273.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_276.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_279.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_282.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_285.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_288.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_291.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_294.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_297.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_300.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_303.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_306.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_309.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_312.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_315.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_318.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_321.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_324.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_327.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_330.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_333.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_336.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_339.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_342.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_345.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_348.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_351.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_354.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_357.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_360.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_363.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_366.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_369.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_372.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_375.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_378.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_381.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_384.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_387.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_390.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_393.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_396.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_399.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_402.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_405.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_408.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_411.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_414.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_417.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_420.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_423.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_426.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_429.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_432.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_435.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_438.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_441.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_444.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_447.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_450.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_453.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_456.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_459.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_462.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_465.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_468.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_471.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_474.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_477.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_480.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_483.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_486.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_489.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_492.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_495.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_498.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_501.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_504.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_507.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_510.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_513.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_516.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_519.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_522.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_525.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_528.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_531.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_534.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_537.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_540.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_543.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_546.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_549.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_552.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_555.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_558.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_561.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_564.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_567.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_570.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_573.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_576.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_579.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_582.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_585.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_588.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_591.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_594.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_597.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_600.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_603.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_606.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_609.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_612.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_615.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_618.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_621.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_624.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_627.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_630.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_633.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_636.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_639.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_642.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_645.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_648.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_651.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_654.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_657.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_660.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_663.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_666.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_669.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_672.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_675.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_678.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_681.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_684.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_687.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_690.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_693.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_696.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_699.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_702.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_705.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_708.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_711.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_714.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_717.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_720.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_723.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_726.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_729.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_732.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_735.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_738.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_741.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_744.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_747.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_750.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_753.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_756.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_759.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_762.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_765.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_768.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_771.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_774.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_777.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_780.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_783.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_786.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_789.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_792.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_795.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_798.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_801.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_804.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_807.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_810.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_813.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_816.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_819.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_822.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_825.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_828.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_831.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_834.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_837.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_840.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_843.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_846.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_849.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_852.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_855.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_858.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_861.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_864.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_867.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_870.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_873.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_876.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_879.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_882.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_885.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_888.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_891.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_894.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_897.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_900.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_903.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_906.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_909.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_912.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_915.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_918.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_921.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_924.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_927.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_930.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_933.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_936.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_939.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_942.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_945.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_948.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_951.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_954.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_957.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_960.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_963.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_966.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_969.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_972.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_975.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_978.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_981.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_984.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_987.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_990.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_993.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_996.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_999.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1002.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1005.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1008.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1011.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1014.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1017.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1020.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1023.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1026.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1029.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1032.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1035.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1038.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1041.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1044.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1047.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1050.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1053.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1056.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1059.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1062.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1065.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1068.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1071.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1074.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1077.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1080.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1083.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1086.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1089.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1092.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1095.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1098.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1101.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1104.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1107.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1110.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1113.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1116.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1119.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1122.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1125.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1128.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1131.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1134.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1137.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1140.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1143.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1146.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1149.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1152.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1155.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1158.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1161.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1164.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1167.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1170.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1173.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1176.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1179.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1182.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1185.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1188.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1191.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1194.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1197.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1200.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1203.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1206.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1209.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1212.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1215.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1218.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1221.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1224.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1227.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1230.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1233.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1236.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1239.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1242.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1245.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1248.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1251.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1254.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1257.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1260.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1263.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1266.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1269.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1272.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1275.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1278.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1281.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1284.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1287.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1290.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1293.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1296.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1299.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1302.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1305.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1308.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1311.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1314.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1317.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1320.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1323.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1326.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1329.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1332.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1335.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1338.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1341.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1344.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1347.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1350.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1353.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1356.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1359.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1362.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1365.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1368.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1371.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1374.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1377.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1380.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1383.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1386.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1389.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1392.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1395.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1398.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1401.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1404.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1407.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1410.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1413.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1416.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1419.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1422.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1425.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1428.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1431.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1434.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1437.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1440.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1443.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1446.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1449.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1452.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1455.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1458.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1461.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1464.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1467.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1470.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1473.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1476.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1479.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1482.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1485.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1488.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1491.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1494.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1497.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1500.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1503.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1506.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1509.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1512.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1515.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1518.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1521.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1524.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1527.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1530.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1533.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1536.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1539.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1542.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1545.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1548.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1551.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1554.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1557.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1560.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1563.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1566.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1569.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1572.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1575.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1578.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1581.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1584.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1587.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1590.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1593.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1596.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1599.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1602.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1605.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1608.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1611.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1614.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1617.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1620.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1623.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1626.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1629.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1632.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1635.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1638.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1641.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1644.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1647.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1650.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1653.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1656.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1659.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1662.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1665.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1668.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1671.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1674.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1677.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1680.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1683.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1686.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1689.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1692.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1695.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1698.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1701.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1704.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1707.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1710.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1713.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1716.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1719.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1722.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1725.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1728.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1731.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1734.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1737.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1740.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1743.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1746.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1749.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1752.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1755.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1758.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1761.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1764.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1767.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1770.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1773.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1776.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1779.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1782.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1785.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1788.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1791.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1794.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1797.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1800.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1803.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1806.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1809.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1812.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1815.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1818.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1821.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1824.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1827.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1830.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1833.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1836.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1839.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1842.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1845.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1848.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1851.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1854.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1857.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1860.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1863.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1866.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1869.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1872.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1875.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1878.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1881.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1884.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1887.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1890.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1893.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1896.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1899.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1902.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1905.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1908.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1911.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1914.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1917.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1920.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1923.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1926.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1929.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1932.png: Corners found.
frame_1935.png: Corners found.
frame_1938.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1941.png: Corners found.
frame_1944.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1947.png: Corners found.
frame_1950.png: Corners found.
frame_1953.png: Corners found.
frame_1956.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1959.png: Corners found.
frame_1962.png: Corners found.
frame_1965.png: Corners found.
frame_1968.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1971.png: Corners found.
frame_1974.png: Corners found.
frame_1977.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1980.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1983.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1986.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1989.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1992.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_1995.png: Corners found.
frame_1998.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2001.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2004.png: Corners found.
frame_2007.png: Corners found.
frame_2010.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2013.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2016.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2019.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2022.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2025.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2028.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2031.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2034.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2037.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2040.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2043.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2046.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2049.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2052.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2055.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2058.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2061.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2064.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2067.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2070.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2073.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2076.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2079.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2082.png: Corners found.
frame_2085.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2088.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2091.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2094.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2097.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2100.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2103.png: Corners found.
frame_2106.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2109.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2112.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2115.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2118.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2121.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2124.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2127.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2130.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2133.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2136.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2139.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2142.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2145.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2148.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2151.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2154.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2157.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2160.png: Corners found.
frame_2163.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2166.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2169.png: Corners found.
frame_2172.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2175.png: Corners found.
frame_2178.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2181.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2184.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2187.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2190.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2193.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2196.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2199.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2202.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2205.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2208.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2211.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2214.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2217.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2220.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2223.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2226.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2229.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2232.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2235.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2238.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2241.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2244.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2247.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2250.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2253.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2256.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2259.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2262.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2265.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2268.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2271.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2274.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2277.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2280.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2283.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2286.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2289.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2292.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2295.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2298.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2301.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2304.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2307.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2310.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2313.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2316.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2319.png: Corners found.
frame_2322.png: Corners found.
frame_2325.png: Corners found.
frame_2328.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2331.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2334.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2337.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2340.png: Corners found.
frame_2343.png: Corners found.
frame_2346.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2349.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2352.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2355.png: Corners found.
frame_2358.png: Corners found.
frame_2361.png: Corners found.
frame_2364.png: Corners found.
frame_2367.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2370.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2373.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2376.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2379.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2382.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2385.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2388.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2391.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2394.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2397.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2400.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2403.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2406.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2409.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2412.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2415.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2418.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2421.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2424.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2427.png: Corners found.
frame_2430.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2433.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2436.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2439.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2442.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2445.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2448.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2451.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2454.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2457.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2460.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2463.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2466.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2469.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2472.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2475.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2478.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2481.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2484.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2487.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2490.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2493.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2496.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2499.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2502.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2505.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2508.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2511.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2514.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2517.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2520.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2523.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2526.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2529.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2532.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2535.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2538.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2541.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2544.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2547.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2550.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2553.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2556.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2559.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2562.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2565.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2568.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2571.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2574.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2577.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2580.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2583.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2586.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2589.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2592.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2595.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2598.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2601.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2604.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2607.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2610.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2613.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2616.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2619.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2622.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2625.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2628.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2631.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2634.png: Corners found.
frame_2637.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2640.png: Corners found.
frame_2643.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2646.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2649.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2652.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2655.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2658.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2661.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2664.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2667.png: Corners found.
frame_2670.png: Corners found.
frame_2673.png: Corners found.
frame_2676.png: Corners found.
frame_2679.png: Corners found.
frame_2682.png: Corners found.
frame_2685.png: Corners found.
frame_2688.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2691.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2694.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2697.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2700.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2703.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2706.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2709.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2712.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2715.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2718.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2721.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2724.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2727.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2730.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2733.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2736.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2739.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2742.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2745.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2748.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2751.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2754.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2757.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2760.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2763.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2766.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2769.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2772.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2775.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2778.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2781.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2784.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2787.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2790.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2793.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2796.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2799.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2802.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2805.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2808.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2811.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2814.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2817.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2820.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2823.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2826.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2829.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2832.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2835.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2838.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2841.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2844.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2847.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2850.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2853.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2856.png: Corners found.
frame_2859.png: Corners found.
frame_2862.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2865.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2868.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2871.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2874.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2877.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2880.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2883.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2886.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2889.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2892.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2895.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2898.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2901.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2904.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2907.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2910.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2913.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2916.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2919.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2922.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2925.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2928.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2931.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2934.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2937.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2940.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2943.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2946.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2949.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2952.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2955.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2958.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2961.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2964.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2967.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2970.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2973.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2976.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2979.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2982.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2985.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2988.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2991.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2994.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_2997.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3000.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3003.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3006.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3009.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3012.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3015.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3018.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3021.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3024.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3027.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3030.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3033.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3036.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3039.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3042.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3045.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3048.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3051.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3054.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3057.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3060.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3063.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3066.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3069.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3072.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3075.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3078.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3081.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3084.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3087.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3090.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3093.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3096.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3099.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3102.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3105.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3108.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3111.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3114.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3117.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3120.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3123.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3126.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3129.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3132.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3135.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3138.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3141.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3144.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3147.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3150.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3153.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3156.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3159.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3162.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3165.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3168.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3171.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3174.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3177.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3180.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3183.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3186.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3189.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3192.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3195.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3198.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3201.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3204.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3207.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3210.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3213.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3216.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3219.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3222.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3225.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3228.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3231.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3234.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3237.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3240.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3243.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3246.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3249.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3252.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3255.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3258.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3261.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3264.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3267.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3270.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3273.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3276.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3279.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3282.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3285.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3288.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3291.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3294.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3297.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3300.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3303.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3306.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3309.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3312.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3315.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3318.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3321.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3324.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3327.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3330.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3333.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3336.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3339.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3342.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3345.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3348.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3351.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3354.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3357.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3360.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3363.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3366.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3369.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3372.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3375.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3378.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3381.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3384.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3387.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3390.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3393.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3396.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3399.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3402.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3405.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3408.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3411.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3414.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3417.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3420.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3423.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3426.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3429.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3432.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3435.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3438.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3441.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3444.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3447.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3450.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3453.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3456.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3459.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3462.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3465.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3468.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3471.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3474.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3477.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3480.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3483.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3486.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3489.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3492.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3495.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3498.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3501.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3504.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3507.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3510.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3513.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3516.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3519.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3522.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3525.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3528.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3531.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3534.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3537.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3540.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3543.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3546.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3549.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3552.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3555.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3558.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3561.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3564.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3567.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3570.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3573.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3576.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3579.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3582.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3585.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3588.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3591.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3594.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3597.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3600.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3603.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3606.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3609.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3612.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3615.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3618.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3621.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3624.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3627.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3630.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3633.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3636.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3639.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3642.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3645.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3648.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3651.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3654.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3657.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3660.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3663.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3666.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3669.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3672.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3675.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3678.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3681.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3684.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3687.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3690.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3693.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3696.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3699.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3702.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3705.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3708.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3711.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3714.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3717.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3720.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3723.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3726.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3729.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3732.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3735.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3738.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3741.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3744.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3747.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3750.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3753.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3756.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3759.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3762.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3765.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3768.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3771.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3774.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
frame_3777.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.
Intrinsics error: 0.243 px for each cameras.

Calculating extrinsic parameters...

Camera cam1:
frame_3.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.

Camera cam2:
frame_3.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.

Camera cam3:
frame_3.png: Corners not found. To label them by hand, set "show_detection_intrinsics" to true in the Config.toml file.

--> Residual (RMS) calibration errors for each camera are respectively [4.087, 3.847, 4.244] px, 
which corresponds to [18.111, 15.254, 19.142] mm.

Calibration file is stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\calibration\Calib_board.toml.

Calibration took 1359.45 s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_tpose_p0, for all frames.
On Wednesday 11. December 2024, 09:02:24
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0

Mean reprojection error for RHip is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0\pose-3d\0_1_tpose_p0_0-197.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_0_p0, for all frames.
On Wednesday 11. December 2024, 09:02:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0\pose-3d\0_1_0_p0_0-299.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_3_p0, for all frames.
On Wednesday 11. December 2024, 09:02:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0\pose-3d\0_1_3_p0_0-533.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m04s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_4_p0, for all frames.
On Wednesday 11. December 2024, 09:02:32
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_4_p0

Mean reprojection error for RHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_4_p0\pose-3d\0_1_4_p0_0-276.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_5_p0, for all frames.
On Wednesday 11. December 2024, 09:02:34
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_5_p0

Mean reprojection error for RHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_5_p0\pose-3d\0_1_5_p0_0-175.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_6_p0, for all frames.
On Wednesday 11. December 2024, 09:02:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_6_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_6_p0\pose-3d\0_1_6_p0_0-223.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_7_p0, for all frames.
On Wednesday 11. December 2024, 09:02:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_7_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_7_p0\pose-3d\0_1_7_p0_0-226.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_19_p0, for all frames.
On Wednesday 11. December 2024, 09:02:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_19_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.9 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.9 px (~ 0.017 m), reached with 0.16 excluded cameras. 
  Frames 200 to 200 were interpolated.
Mean reprojection error for RIndex is 4.4 px (~ 0.019 m), reached with 0.3 excluded cameras. 
  Frames 118 to 118, 121 to 121, 123 to 123, 226 to 228, 233 to 233 were interpolated.
Mean reprojection error for RPinky is 4.2 px (~ 0.019 m), reached with 0.39 excluded cameras. 
  Frames 123 to 126, 132 to 133, 169 to 169, 197 to 197, 224 to 225, 234 to 236, 240 to 242 were interpolated.
Mean reprojection error for LShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.4 px (~ 0.015 m), reached with 0.26 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 4.5 px (~ 0.02 m), reached with 0.12 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.7 px (~ 0.021 m), reached with 0.41 excluded cameras. 
  Frames 98 to 98, 141 to 141, 177 to 178, 190 to 190, 192 to 193, 198 to 200, 216 to 217, 219 to 220, 225 to 225, 238 to 238, 243 to 246 were interpolated.
Mean reprojection error for LIndex is 4.1 px (~ 0.018 m), reached with 0.55 excluded cameras. 
  Frames 138 to 141, 148 to 152, 172 to 172, 174 to 177, 184 to 185, 190 to 190, 192 to 193, 198 to 200, 216 to 217, 219 to 221, 232 to 232, 238 to 238, 243 to 247 were interpolated.
Mean reprojection error for LPinky is 4.3 px (~ 0.019 m), reached with 0.47 excluded cameras. 
  Frames 138 to 141, 177 to 179, 204 to 204, 216 to 217, 219 to 222, 232 to 232, 238 to 238, 243 to 247 were interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.1 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 5% of the time, Camera cam3: 3%, and Camera cam2: 2%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_19_p0\pose-3d\0_1_19_p0_0-352.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_20_p0, for all frames.
On Wednesday 11. December 2024, 09:02:43
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_20_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.14 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 1% of the time, Camera cam3: 0%, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_20_p0\pose-3d\0_1_20_p0_0-232.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_21_p0, for all frames.
On Wednesday 11. December 2024, 09:02:45
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_21_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.9 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.18 excluded cameras. 
  Frames 163 to 163, 168 to 168 were interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_21_p0\pose-3d\0_1_21_p0_0-215.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_22_p0, for all frames.
On Wednesday 11. December 2024, 09:02:47
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_22_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_22_p0\pose-3d\0_1_22_p0_0-274.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_23_p0, for all frames.
On Wednesday 11. December 2024, 09:02:49
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_23_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_23_p0\pose-3d\0_1_23_p0_0-231.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_24_p0, for all frames.
On Wednesday 11. December 2024, 09:02:51
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_24_p0

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_24_p0\pose-3d\0_1_24_p0_0-342.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_25_p0, for all frames.
On Wednesday 11. December 2024, 09:02:54
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_25_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.09 excluded cameras. 
  Frames 271 to 273, 278 to 278 were interpolated.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.12 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.05 excluded cameras. 
  Frames 258 to 258 were interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.8 px (~ 0.017 m), reached with 0.03 excluded cameras. 
  Frames 233 to 233 were interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 1% of the time, Camera cam1: 1%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_25_p0\pose-3d\0_1_25_p0_0-370.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_26_p0, for all frames.
On Wednesday 11. December 2024, 09:02:57
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_26_p0

Mean reprojection error for RHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_26_p0\pose-3d\0_1_26_p0_0-249.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_36_p0, for all frames.
On Wednesday 11. December 2024, 09:03:00
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_36_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_36_p0\pose-3d\0_1_36_p0_0-295.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_37_p0, for all frames.
On Wednesday 11. December 2024, 09:03:03
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_37_p0

Mean reprojection error for RHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.9 px (~ 0.022 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.5 px (~ 0.016 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_37_p0\pose-3d\0_1_37_p0_0-238.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_38_p0, for all frames.
On Wednesday 11. December 2024, 09:03:05
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_38_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.23 excluded cameras. 
  Frames 128 to 128, 213 to 213, 218 to 218, 225 to 226 were interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.17 excluded cameras. 
  Frames 131 to 131, 177 to 177, 179 to 179, 213 to 213, 224 to 224 were interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 1% of the time, Camera cam3: 1%, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_38_p0\pose-3d\0_1_38_p0_0-322.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_39_p0, for all frames.
On Wednesday 11. December 2024, 09:03:07
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_39_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.4 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.6 px (~ 0.016 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.9 px (~ 0.017 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.3 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  Frames 258 to 259 were interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_39_p0\pose-3d\0_1_39_p0_0-427.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_40_p0, for all frames.
On Wednesday 11. December 2024, 09:03:11
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_40_p0

Mean reprojection error for RHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.4 px (~ 0.019 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.4 px (~ 0.019 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.0 px (~ 0.018 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_40_p0\pose-3d\0_1_40_p0_0-182.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_41_p0, for all frames.
On Wednesday 11. December 2024, 09:03:13
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_41_p0

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.6 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_41_p0\pose-3d\0_1_41_p0_0-364.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_42_p0, for all frames.
On Wednesday 11. December 2024, 09:03:16
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_42_p0

Mean reprojection error for RHip is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.6 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.5 px (~ 0.011 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.8 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.3 px, which roughly corresponds to 10.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_42_p0\pose-3d\0_1_42_p0_0-265.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_43_p0, for all frames.
On Wednesday 11. December 2024, 09:03:18
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_43_p0

Mean reprojection error for RHip is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.6 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_43_p0\pose-3d\0_1_43_p0_0-253.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_44_p0, for all frames.
On Wednesday 11. December 2024, 09:03:21
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_44_p0

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.0 px (~ 0.013 m), reached with 0.4 excluded cameras. 
  Frames 216 to 219 were interpolated.
Mean reprojection error for LWrist is 4.1 px (~ 0.018 m), reached with 0.44 excluded cameras. 
  Frames 102 to 103, 215 to 220, 236 to 236 were interpolated.
Mean reprojection error for LThumb is 3.9 px (~ 0.017 m), reached with 0.62 excluded cameras. 
  Frames 102 to 103, 110 to 110, 112 to 115, 117 to 123, 132 to 132, 136 to 136, 140 to 140, 142 to 144, 152 to 152, 158 to 158, 160 to 161, 173 to 174, 182 to 183, 198 to 205, 207 to 207, 210 to 210, 213 to 220, 228 to 228, 230 to 230, 234 to 235 were interpolated.
Mean reprojection error for LIndex is 4.0 px (~ 0.018 m), reached with 0.64 excluded cameras. 
  Frames 101 to 103, 107 to 107, 110 to 110, 117 to 118, 135 to 135, 146 to 146, 157 to 157, 161 to 161, 168 to 168, 173 to 173, 175 to 175, 178 to 183, 185 to 187, 189 to 189, 191 to 193, 203 to 204, 207 to 207, 210 to 210, 213 to 220, 229 to 231, 233 to 234, 237 to 238 were interpolated.
Mean reprojection error for LPinky is 4.4 px (~ 0.019 m), reached with 0.78 excluded cameras. 
  Frames 101 to 105, 113 to 113, 117 to 117, 120 to 123, 127 to 130, 144 to 144, 147 to 147, 161 to 170, 172 to 173, 192 to 193, 197 to 197, 204 to 207, 210 to 210, 230 to 239 were interpolated.
  Frames ['175:189', '213:226'] could not be interpolated: consider adjusting thresholds.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.11 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 7% of the time, Camera cam2: 2%, and Camera cam3: 2%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_44_p0\pose-3d\0_1_44_p0_0-333.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_1_p0, for all frames.
On Wednesday 11. December 2024, 09:03:24
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_1_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.8 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_1_p0\pose-3d\0_1_1_p0_0-139.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_18_p0, for all frames.
On Wednesday 11. December 2024, 09:03:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.9 px (~ 0.013 m), reached with 0.02 excluded cameras. 
  Frames 212 to 214 were interpolated.
Mean reprojection error for RSmallToe is 2.8 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.012 m), reached with 0.07 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.5 px (~ 0.011 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.5 px (~ 0.02 m), reached with 0.07 excluded cameras. 
  Frames 132 to 132 were interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.1 px (~ 0.018 m), reached with 0.22 excluded cameras. 
  Frames 104 to 104, 139 to 146, 188 to 190, 195 to 195, 197 to 199, 237 to 237, 240 to 240, 242 to 245 were interpolated.
Mean reprojection error for LWrist is 3.3 px (~ 0.015 m), reached with 0.15 excluded cameras. 
  Frames 144 to 148, 188 to 192, 194 to 195, 239 to 240, 242 to 243 were interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.15 excluded cameras. 
  Frames 142 to 142, 188 to 190, 193 to 195, 240 to 240 were interpolated.
Mean reprojection error for LIndex is 3.5 px (~ 0.016 m), reached with 0.12 excluded cameras. 
  Frames 188 to 190, 193 to 194, 245 to 245 were interpolated.
Mean reprojection error for LPinky is 4.0 px (~ 0.018 m), reached with 0.12 excluded cameras. 
  Frames 141 to 141, 147 to 148, 188 to 190, 194 to 195, 198 to 199 were interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.04 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 2% of the time, Camera cam2: 1%, and Camera cam3: 1%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0\pose-3d\0_1_18_p0_0-389.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_2_p0, for all frames.
On Wednesday 11. December 2024, 09:03:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_2_p0

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_2_p0\pose-3d\0_1_2_p0_0-165.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_8_p0, for all frames.
On Wednesday 11. December 2024, 09:03:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_8_p0

Mean reprojection error for RHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_8_p0\pose-3d\0_1_8_p0_0-170.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_tpose_p1, for all frames.
On Wednesday 11. December 2024, 09:03:31
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_tpose_p1

Mean reprojection error for RHip is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_tpose_p1\pose-3d\0_1_tpose_p1_0-236.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_11_p1, for all frames.
On Wednesday 11. December 2024, 09:03:33
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_11_p1

Mean reprojection error for RHip is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.5 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.8 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_11_p1\pose-3d\0_1_11_p1_0-187.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_12_p1, for all frames.
On Wednesday 11. December 2024, 09:03:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_12_p1

Mean reprojection error for RHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 5.7 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 5.7 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_12_p1\pose-3d\0_1_12_p1_0-218.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_13_p1, for all frames.
On Wednesday 11. December 2024, 09:03:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_13_p1

Mean reprojection error for RHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_13_p1\pose-3d\0_1_13_p1_0-202.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_14_p1, for all frames.
On Wednesday 11. December 2024, 09:03:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_14_p1

Mean reprojection error for RHip is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_14_p1\pose-3d\0_1_14_p1_0-306.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_15_p1, for all frames.
On Wednesday 11. December 2024, 09:03:41
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_15_p1

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.3 px (~ 0.01 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_15_p1\pose-3d\0_1_15_p1_0-239.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_16_p1, for all frames.
On Wednesday 11. December 2024, 09:03:43
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_16_p1

Mean reprojection error for RHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.5 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_16_p1\pose-3d\0_1_16_p1_0-211.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_17_p1, for all frames.
On Wednesday 11. December 2024, 09:03:45
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_17_p1

Mean reprojection error for RHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.8 px (~ 0.026 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.1 px (~ 0.018 m), reached with 0.07 excluded cameras. 
  Frames 10 to 11 were interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_17_p1\pose-3d\0_1_17_p1_0-255.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_27_p1, for all frames.
On Wednesday 11. December 2024, 09:03:47
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_27_p1

Mean reprojection error for RHip is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.3 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_27_p1\pose-3d\0_1_27_p1_0-361.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_28_p1, for all frames.
On Wednesday 11. December 2024, 09:03:50
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_28_p1

Mean reprojection error for RHip is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 0.9 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.012 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_28_p1\pose-3d\0_1_28_p1_0-279.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_29_p1, for all frames.
On Wednesday 11. December 2024, 09:03:52
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_29_p1

Mean reprojection error for RHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_29_p1\pose-3d\0_1_29_p1_0-261.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_30_p1, for all frames.
On Wednesday 11. December 2024, 09:03:54
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_30_p1

Mean reprojection error for RHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.3 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.12 excluded cameras. 
  Frames 64 to 64, 94 to 94 were interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_30_p1\pose-3d\0_1_30_p1_0-226.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_31_p1, for all frames.
On Wednesday 11. December 2024, 09:03:56
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_31_p1

Mean reprojection error for RHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_31_p1\pose-3d\0_1_31_p1_0-230.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_32_p1, for all frames.
On Wednesday 11. December 2024, 09:03:58
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_32_p1

Mean reprojection error for RHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.3 px (~ 0.019 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  Frames 274 to 274 were interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.1 px (~ 0.009 m), reached with 0.11 excluded cameras. 
  Frames 156 to 157, 159 to 159, 161 to 162 were interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.1 excluded cameras. 
  Frames 156 to 156, 159 to 159, 161 to 162 were interpolated.
Mean reprojection error for LThumb is 3.6 px (~ 0.016 m), reached with 0.12 excluded cameras. 
  Frames 155 to 157, 159 to 159, 161 to 163 were interpolated.
Mean reprojection error for LIndex is 2.7 px (~ 0.012 m), reached with 0.12 excluded cameras. 
  Frames 156 to 157, 159 to 159, 161 to 163 were interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.12 excluded cameras. 
  Frames 156 to 159, 161 to 162 were interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_32_p1\pose-3d\0_1_32_p1_0-299.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_33_p1, for all frames.
On Wednesday 11. December 2024, 09:04:00
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_33_p1

Mean reprojection error for RHip is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.1 excluded cameras. 
  Frames 201 to 202 were interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 1.1 excluded cameras. 
  Frames 55 to 55, 76 to 76, 122 to 122, 124 to 126, 130 to 131, 140 to 141, 145 to 145, 149 to 158, 160 to 167, 169 to 169, 171 to 173, 175 to 176, 217 to 217, 237 to 237, 241 to 246, 248 to 248, 268 to 268, 270 to 270, 272 to 272, 279 to 279 were interpolated.
  Frames ['190:215', '219:231'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.49 excluded cameras. 
  Frames 54 to 54, 62 to 63, 122 to 123, 150 to 150, 153 to 153, 165 to 166, 170 to 170, 172 to 173, 176 to 177, 179 to 180, 182 to 182, 184 to 184, 186 to 188, 195 to 195, 197 to 197, 238 to 238 were interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.8 px (~ 0.012 m), reached with 0.21 excluded cameras. 
  Frames 70 to 70, 116 to 117, 163 to 163 were interpolated.
Mean reprojection error for LIndex is 2.8 px (~ 0.012 m), reached with 0.16 excluded cameras. 
  Frames 80 to 80, 84 to 85 were interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.32 excluded cameras. 
  Frames 79 to 79, 120 to 120, 125 to 125, 160 to 160 were interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.09 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 4% of the time, Camera cam3: 3%, and Camera cam1: 2%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_33_p1\pose-3d\0_1_33_p1_0-333.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_34_p1, for all frames.
On Wednesday 11. December 2024, 09:04:03
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_34_p1

Mean reprojection error for RHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.6 px (~ 0.02 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.21 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.21 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.9 px (~ 0.013 m), reached with 0.23 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.25 excluded cameras. 
  Frames 80 to 80 were interpolated.
Mean reprojection error for RPinky is 3.6 px (~ 0.016 m), reached with 0.22 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.2 px (~ 0.014 m), reached with 0.15 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.24 excluded cameras. 
  Frames 68 to 75, 77 to 78, 80 to 80 were interpolated.
Mean reprojection error for LThumb is 3.4 px (~ 0.015 m), reached with 0.28 excluded cameras. 
  No frames needed to be interpolated.
  Frames ['67:81'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LIndex is 3.3 px (~ 0.015 m), reached with 0.3 excluded cameras. 
  Frames 53 to 54, 56 to 56 were interpolated.
  Frames ['67:81'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.29 excluded cameras. 
  No frames needed to be interpolated.
  Frames ['66:81'] could not be interpolated: consider adjusting thresholds.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.09 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 5% of the time, Camera cam1: 3%, and Camera cam2: 1%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_34_p1\pose-3d\0_1_34_p1_0-240.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_35_p1, for all frames.
On Wednesday 11. December 2024, 09:04:05
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_35_p1

Mean reprojection error for RHip is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.5 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 4.3 px (~ 0.019 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.9 px (~ 0.017 m), reached with 0.15 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.13 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.11 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.1 px (~ 0.018 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.8 px (~ 0.017 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.3 px, which roughly corresponds to 14.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.03 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 2% of the time, Camera cam1: 1%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_35_p1\pose-3d\0_1_35_p1_0-310.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_45_p1, for all frames.
On Wednesday 11. December 2024, 09:04:07
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_45_p1

Mean reprojection error for RHip is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.6 px (~ 0.025 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.5 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_45_p1\pose-3d\0_1_45_p1_0-261.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_46_p1, for all frames.
On Wednesday 11. December 2024, 09:04:10
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_46_p1

Mean reprojection error for RHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.3 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.6 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.9 px (~ 0.017 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.9 px (~ 0.017 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.3 px (~ 0.019 m), reached with 0.05 excluded cameras. 
  Frames 182 to 182 were interpolated.
Mean reprojection error for LPinky is 4.5 px (~ 0.02 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.4 px, which roughly corresponds to 15.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_46_p1\pose-3d\0_1_46_p1_0-339.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_47_p1, for all frames.
On Wednesday 11. December 2024, 09:04:12
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_47_p1

Mean reprojection error for RHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.6 px (~ 0.02 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.1 px (~ 0.018 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.2 px, which roughly corresponds to 14.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_47_p1\pose-3d\0_1_47_p1_0-350.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_48_p1, for all frames.
On Wednesday 11. December 2024, 09:04:15
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_48_p1

Mean reprojection error for RHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.4 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_48_p1\pose-3d\0_1_48_p1_0-353.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_49_p1, for all frames.
On Wednesday 11. December 2024, 09:04:18
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_49_p1

Mean reprojection error for RHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.6 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.7 px (~ 0.016 m), reached with 0.07 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_49_p1\pose-3d\0_1_49_p1_0-225.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_50_p1, for all frames.
On Wednesday 11. December 2024, 09:04:20
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_50_p1

Mean reprojection error for RHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.04 excluded cameras. 
  Frames 224 to 224 were interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_50_p1\pose-3d\0_1_50_p1_0-292.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_51_p1, for all frames.
On Wednesday 11. December 2024, 09:04:22
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_51_p1

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.3 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.1 px (~ 0.018 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_51_p1\pose-3d\0_1_51_p1_0-232.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_52_p1, for all frames.
On Wednesday 11. December 2024, 09:04:24
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_52_p1

Mean reprojection error for RHip is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.4 px (~ 0.011 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.6 px (~ 0.016 m), reached with 0.02 excluded cameras. 
  Frames 302 to 303 were interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.03 excluded cameras. 
  Frames 303 to 303 were interpolated.
Mean reprojection error for LPinky is 3.6 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_52_p1\pose-3d\0_1_52_p1_0-423.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_53_p1, for all frames.
On Wednesday 11. December 2024, 09:04:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_53_p1

Mean reprojection error for RHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.8 px (~ 0.017 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.4 px (~ 0.019 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.9 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_53_p1\pose-3d\0_1_53_p1_0-279.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_10_p1, for all frames.
On Wednesday 11. December 2024, 09:04:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_10_p1

Mean reprojection error for RHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_10_p1\pose-3d\0_1_10_p1_0-318.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_9_p1, for all frames.
On Wednesday 11. December 2024, 09:04:32
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_9_p1

Mean reprojection error for RHip is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.4 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 6.1 px (~ 0.027 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_9_p1\pose-3d\0_1_9_p1_0-324.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_tpose_p0, for all frames.
On Wednesday 11. December 2024, 09:04:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0\pose-3d\0_1_tpose_p0_0-197_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_0_p0, for all frames.
On Wednesday 11. December 2024, 09:04:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0\pose-3d\0_1_0_p0_0-299_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_3_p0, for all frames.
On Wednesday 11. December 2024, 09:04:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0\pose-3d\0_1_3_p0_0-533_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_4_p0, for all frames.
On Wednesday 11. December 2024, 09:04:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_4_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_4_p0\pose-3d\0_1_4_p0_0-276_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_5_p0, for all frames.
On Wednesday 11. December 2024, 09:04:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_5_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_5_p0\pose-3d\0_1_5_p0_0-175_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_6_p0, for all frames.
On Wednesday 11. December 2024, 09:04:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_6_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_6_p0\pose-3d\0_1_6_p0_0-223_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_7_p0, for all frames.
On Wednesday 11. December 2024, 09:04:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_7_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_7_p0\pose-3d\0_1_7_p0_0-226_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_19_p0, for all frames.
On Wednesday 11. December 2024, 09:04:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_19_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_19_p0\pose-3d\0_1_19_p0_0-352_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_20_p0, for all frames.
On Wednesday 11. December 2024, 09:04:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_20_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_20_p0\pose-3d\0_1_20_p0_0-232_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_21_p0, for all frames.
On Wednesday 11. December 2024, 09:04:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_21_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_21_p0\pose-3d\0_1_21_p0_0-215_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_22_p0, for all frames.
On Wednesday 11. December 2024, 09:04:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_22_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_22_p0\pose-3d\0_1_22_p0_0-274_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_23_p0, for all frames.
On Wednesday 11. December 2024, 09:04:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_23_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_23_p0\pose-3d\0_1_23_p0_0-231_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_24_p0, for all frames.
On Wednesday 11. December 2024, 09:04:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_24_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_24_p0\pose-3d\0_1_24_p0_0-342_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_25_p0, for all frames.
On Wednesday 11. December 2024, 09:04:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_25_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_25_p0\pose-3d\0_1_25_p0_0-370_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_26_p0, for all frames.
On Wednesday 11. December 2024, 09:04:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_26_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_26_p0\pose-3d\0_1_26_p0_0-249_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_36_p0, for all frames.
On Wednesday 11. December 2024, 09:04:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_36_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_36_p0\pose-3d\0_1_36_p0_0-295_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_37_p0, for all frames.
On Wednesday 11. December 2024, 09:04:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_37_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_37_p0\pose-3d\0_1_37_p0_0-238_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_38_p0, for all frames.
On Wednesday 11. December 2024, 09:04:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_38_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_38_p0\pose-3d\0_1_38_p0_0-322_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_39_p0, for all frames.
On Wednesday 11. December 2024, 09:04:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_39_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_39_p0\pose-3d\0_1_39_p0_0-427_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_40_p0, for all frames.
On Wednesday 11. December 2024, 09:04:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_40_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_40_p0\pose-3d\0_1_40_p0_0-182_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_41_p0, for all frames.
On Wednesday 11. December 2024, 09:04:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_41_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_41_p0\pose-3d\0_1_41_p0_0-364_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_42_p0, for all frames.
On Wednesday 11. December 2024, 09:04:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_42_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_42_p0\pose-3d\0_1_42_p0_0-265_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_43_p0, for all frames.
On Wednesday 11. December 2024, 09:04:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_43_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_43_p0\pose-3d\0_1_43_p0_0-253_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_44_p0, for all frames.
On Wednesday 11. December 2024, 09:04:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_44_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_44_p0\pose-3d\0_1_44_p0_0-333_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_1_p0, for all frames.
On Wednesday 11. December 2024, 09:04:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_1_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_1_p0\pose-3d\0_1_1_p0_0-139_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_18_p0, for all frames.
On Wednesday 11. December 2024, 09:04:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0\pose-3d\0_1_18_p0_0-389_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_2_p0, for all frames.
On Wednesday 11. December 2024, 09:04:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_2_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_2_p0\pose-3d\0_1_2_p0_0-165_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_8_p0, for all frames.
On Wednesday 11. December 2024, 09:04:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_8_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_8_p0\pose-3d\0_1_8_p0_0-170_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_tpose_p1, for all frames.
On Wednesday 11. December 2024, 09:04:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_tpose_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_tpose_p1\pose-3d\0_1_tpose_p1_0-236_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_11_p1, for all frames.
On Wednesday 11. December 2024, 09:04:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_11_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_11_p1\pose-3d\0_1_11_p1_0-187_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_12_p1, for all frames.
On Wednesday 11. December 2024, 09:04:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_12_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_12_p1\pose-3d\0_1_12_p1_0-218_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_13_p1, for all frames.
On Wednesday 11. December 2024, 09:04:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_13_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_13_p1\pose-3d\0_1_13_p1_0-202_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_14_p1, for all frames.
On Wednesday 11. December 2024, 09:04:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_14_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_14_p1\pose-3d\0_1_14_p1_0-306_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_15_p1, for all frames.
On Wednesday 11. December 2024, 09:04:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_15_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_15_p1\pose-3d\0_1_15_p1_0-239_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_16_p1, for all frames.
On Wednesday 11. December 2024, 09:04:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_16_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_16_p1\pose-3d\0_1_16_p1_0-211_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_17_p1, for all frames.
On Wednesday 11. December 2024, 09:04:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_17_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_17_p1\pose-3d\0_1_17_p1_0-255_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_27_p1, for all frames.
On Wednesday 11. December 2024, 09:04:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_27_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_27_p1\pose-3d\0_1_27_p1_0-361_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_28_p1, for all frames.
On Wednesday 11. December 2024, 09:04:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_28_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_28_p1\pose-3d\0_1_28_p1_0-279_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_29_p1, for all frames.
On Wednesday 11. December 2024, 09:04:41
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_29_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_29_p1\pose-3d\0_1_29_p1_0-261_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_30_p1, for all frames.
On Wednesday 11. December 2024, 09:04:41
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_30_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_30_p1\pose-3d\0_1_30_p1_0-226_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_31_p1, for all frames.
On Wednesday 11. December 2024, 09:04:41
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_31_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_31_p1\pose-3d\0_1_31_p1_0-230_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_32_p1, for all frames.
On Wednesday 11. December 2024, 09:04:41
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_32_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_32_p1\pose-3d\0_1_32_p1_0-299_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_33_p1, for all frames.
On Wednesday 11. December 2024, 09:04:41
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_33_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_33_p1\pose-3d\0_1_33_p1_0-333_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_34_p1, for all frames.
On Wednesday 11. December 2024, 09:04:41
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_34_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_34_p1\pose-3d\0_1_34_p1_0-240_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_35_p1, for all frames.
On Wednesday 11. December 2024, 09:04:41
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_35_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_35_p1\pose-3d\0_1_35_p1_0-310_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_45_p1, for all frames.
On Wednesday 11. December 2024, 09:04:41
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_45_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_45_p1\pose-3d\0_1_45_p1_0-261_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_46_p1, for all frames.
On Wednesday 11. December 2024, 09:04:42
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_46_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_46_p1\pose-3d\0_1_46_p1_0-339_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_47_p1, for all frames.
On Wednesday 11. December 2024, 09:04:42
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_47_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_47_p1\pose-3d\0_1_47_p1_0-350_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_48_p1, for all frames.
On Wednesday 11. December 2024, 09:04:42
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_48_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_48_p1\pose-3d\0_1_48_p1_0-353_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_49_p1, for all frames.
On Wednesday 11. December 2024, 09:04:42
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_49_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_49_p1\pose-3d\0_1_49_p1_0-225_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_50_p1, for all frames.
On Wednesday 11. December 2024, 09:04:42
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_50_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_50_p1\pose-3d\0_1_50_p1_0-292_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_51_p1, for all frames.
On Wednesday 11. December 2024, 09:04:42
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_51_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_51_p1\pose-3d\0_1_51_p1_0-232_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_52_p1, for all frames.
On Wednesday 11. December 2024, 09:04:42
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_52_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_52_p1\pose-3d\0_1_52_p1_0-423_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_53_p1, for all frames.
On Wednesday 11. December 2024, 09:04:42
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_53_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_53_p1\pose-3d\0_1_53_p1_0-279_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_10_p1, for all frames.
On Wednesday 11. December 2024, 09:04:42
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_10_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_10_p1\pose-3d\0_1_10_p1_0-318_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_9_p1, for all frames.
On Wednesday 11. December 2024, 09:04:43
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_9_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_9_p1\pose-3d\0_1_9_p1_0-324_filt_butterworth.trc.



---------------------------------------------------------------------
Triangulation of 2D points for 0_2_0_p0, for all frames.
On Wednesday 11. December 2024, 09:04:45
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_0_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.8 px (~ 0.012 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_0_p0\pose-3d\0_2_0_p0_0-188.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_1_p0, for all frames.
On Wednesday 11. December 2024, 09:04:47
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_1_p0

Mean reprojection error for RHip is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.09 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.09 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.3 px (~ 0.015 m), reached with 0.13 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.8 px (~ 0.017 m), reached with 0.12 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.7 px (~ 0.016 m), reached with 0.11 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 2% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_1_p0\pose-3d\0_2_1_p0_0-222.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_2_p0, for all frames.
On Wednesday 11. December 2024, 09:04:48
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_2_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.9 px (~ 0.013 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.8 px (~ 0.021 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.7 px (~ 0.016 m), reached with 0.11 excluded cameras. 
  Frames 50 to 51, 53 to 54, 67 to 67, 72 to 72 were interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.09 excluded cameras. 
  Frames 71 to 71, 83 to 83 were interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.3 px (~ 0.015 m), reached with 0.25 excluded cameras. 
  Frames 260 to 267, 281 to 284, 292 to 300 were interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.12 excluded cameras. 
  Frames 265 to 267, 280 to 282 were interpolated.
Mean reprojection error for LThumb is 3.4 px (~ 0.015 m), reached with 0.09 excluded cameras. 
  Frames 267 to 267, 280 to 280 were interpolated.
Mean reprojection error for LIndex is 3.5 px (~ 0.016 m), reached with 0.13 excluded cameras. 
  Frames 266 to 267, 280 to 281 were interpolated.
Mean reprojection error for LPinky is 3.5 px (~ 0.016 m), reached with 0.13 excluded cameras. 
  Frames 118 to 118, 266 to 267, 281 to 281 were interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.04 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 2% of the time, Camera cam2: 2%, and Camera cam3: 1%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_2_p0\pose-3d\0_2_2_p0_0-403.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_3_p0, for all frames.
On Wednesday 11. December 2024, 09:04:52
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_3_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.07 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_3_p0\pose-3d\0_2_3_p0_0-153.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_4_p0, for all frames.
On Wednesday 11. December 2024, 09:04:53
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_4_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  Frames 261 to 261 were interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_4_p0\pose-3d\0_2_4_p0_0-600.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m04s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_5_p0, for all frames.
On Wednesday 11. December 2024, 09:04:58
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_5_p0

Mean reprojection error for RHip is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.0 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_5_p0\pose-3d\0_2_5_p0_0-179.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_6_p0, for all frames.
On Wednesday 11. December 2024, 09:04:59
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_6_p0

Mean reprojection error for RHip is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_6_p0\pose-3d\0_2_6_p0_0-318.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m02s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_7_p0, for all frames.
On Wednesday 11. December 2024, 09:05:02
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_7_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.9 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.1 px (~ 0.018 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.4 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_7_p0\pose-3d\0_2_7_p0_0-472.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m03s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_8_p0, for all frames.
On Wednesday 11. December 2024, 09:05:06
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_8_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.9 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_8_p0\pose-3d\0_2_8_p0_0-189.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_9_p0, for all frames.
On Wednesday 11. December 2024, 09:05:07
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_9_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.9 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_9_p0\pose-3d\0_2_9_p0_0-232.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m01s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_10_p0, for all frames.
On Wednesday 11. December 2024, 09:05:09
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_10_p0


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_tpose_p0, for all frames.
On Wednesday 11. December 2024, 14:35:00
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0

Mean reprojection error for RHip is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0\pose-3d\0_1_tpose_p0_0-197.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m08s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_0_p0, for all frames.
On Wednesday 11. December 2024, 14:35:09
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0\pose-3d\0_1_0_p0_0-299.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m15s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_3_p0, for all frames.
On Wednesday 11. December 2024, 14:35:24
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0\pose-3d\0_1_3_p0_0-533.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m25s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_4_p0, for all frames.
On Wednesday 11. December 2024, 14:35:50
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_4_p0

Mean reprojection error for RHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_4_p0\pose-3d\0_1_4_p0_0-276.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m14s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_5_p0, for all frames.
On Wednesday 11. December 2024, 14:36:04
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_5_p0

Mean reprojection error for RHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_5_p0\pose-3d\0_1_5_p0_0-175.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m08s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_6_p0, for all frames.
On Wednesday 11. December 2024, 14:36:12
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_6_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_6_p0\pose-3d\0_1_6_p0_0-223.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m10s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_7_p0, for all frames.
On Wednesday 11. December 2024, 14:36:23
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_7_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_7_p0\pose-3d\0_1_7_p0_0-226.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m12s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_19_p0, for all frames.
On Wednesday 11. December 2024, 14:36:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_19_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.9 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.9 px (~ 0.017 m), reached with 0.16 excluded cameras. 
  Frames 200 to 200 were interpolated.
Mean reprojection error for RIndex is 4.4 px (~ 0.019 m), reached with 0.3 excluded cameras. 
  Frames 118 to 118, 121 to 121, 123 to 123, 226 to 228, 233 to 233 were interpolated.
Mean reprojection error for RPinky is 4.2 px (~ 0.019 m), reached with 0.39 excluded cameras. 
  Frames 123 to 126, 132 to 133, 169 to 169, 197 to 197, 224 to 225, 234 to 236, 240 to 242 were interpolated.
Mean reprojection error for LShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.4 px (~ 0.015 m), reached with 0.26 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 4.5 px (~ 0.02 m), reached with 0.12 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.7 px (~ 0.021 m), reached with 0.41 excluded cameras. 
  Frames 98 to 98, 141 to 141, 177 to 178, 190 to 190, 192 to 193, 198 to 200, 216 to 217, 219 to 220, 225 to 225, 238 to 238, 243 to 246 were interpolated.
Mean reprojection error for LIndex is 4.1 px (~ 0.018 m), reached with 0.55 excluded cameras. 
  Frames 138 to 141, 148 to 152, 172 to 172, 174 to 177, 184 to 185, 190 to 190, 192 to 193, 198 to 200, 216 to 217, 219 to 221, 232 to 232, 238 to 238, 243 to 247 were interpolated.
Mean reprojection error for LPinky is 4.3 px (~ 0.019 m), reached with 0.47 excluded cameras. 
  Frames 138 to 141, 177 to 179, 204 to 204, 216 to 217, 219 to 222, 232 to 232, 238 to 238, 243 to 247 were interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.1 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 5% of the time, Camera cam3: 3%, and Camera cam2: 2%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_19_p0\pose-3d\0_1_19_p0_0-352.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_20_p0, for all frames.
On Wednesday 11. December 2024, 14:36:52
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_20_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.14 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 1% of the time, Camera cam3: 0%, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_20_p0\pose-3d\0_1_20_p0_0-232.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m10s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_21_p0, for all frames.
On Wednesday 11. December 2024, 14:37:03
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_21_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.9 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.18 excluded cameras. 
  Frames 163 to 163, 168 to 168 were interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_21_p0\pose-3d\0_1_21_p0_0-215.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m09s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_22_p0, for all frames.
On Wednesday 11. December 2024, 14:37:13
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_22_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_22_p0\pose-3d\0_1_22_p0_0-274.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m12s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_23_p0, for all frames.
On Wednesday 11. December 2024, 14:37:26
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_23_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_23_p0\pose-3d\0_1_23_p0_0-231.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m11s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_24_p0, for all frames.
On Wednesday 11. December 2024, 14:37:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_24_p0

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_24_p0\pose-3d\0_1_24_p0_0-342.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_25_p0, for all frames.
On Wednesday 11. December 2024, 14:37:53
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_25_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.09 excluded cameras. 
  Frames 271 to 273, 278 to 278 were interpolated.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.12 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.05 excluded cameras. 
  Frames 258 to 258 were interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.8 px (~ 0.017 m), reached with 0.03 excluded cameras. 
  Frames 233 to 233 were interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 1% of the time, Camera cam1: 1%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_25_p0\pose-3d\0_1_25_p0_0-370.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m17s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_26_p0, for all frames.
On Wednesday 11. December 2024, 14:38:10
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_26_p0

Mean reprojection error for RHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_26_p0\pose-3d\0_1_26_p0_0-249.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m11s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_36_p0, for all frames.
On Wednesday 11. December 2024, 14:38:22
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_36_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_36_p0\pose-3d\0_1_36_p0_0-295.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m13s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_37_p0, for all frames.
On Wednesday 11. December 2024, 14:38:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_37_p0

Mean reprojection error for RHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.9 px (~ 0.022 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.5 px (~ 0.016 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_37_p0\pose-3d\0_1_37_p0_0-238.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m11s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_38_p0, for all frames.
On Wednesday 11. December 2024, 14:38:48
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_38_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.23 excluded cameras. 
  Frames 128 to 128, 213 to 213, 218 to 218, 225 to 226 were interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.17 excluded cameras. 
  Frames 131 to 131, 177 to 177, 179 to 179, 213 to 213, 224 to 224 were interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 1% of the time, Camera cam3: 1%, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_38_p0\pose-3d\0_1_38_p0_0-322.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m15s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_39_p0, for all frames.
On Wednesday 11. December 2024, 14:39:03
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_39_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.4 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.6 px (~ 0.016 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.9 px (~ 0.017 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.3 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  Frames 258 to 259 were interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_39_p0\pose-3d\0_1_39_p0_0-427.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m23s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_40_p0, for all frames.
On Wednesday 11. December 2024, 14:39:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_40_p0

Mean reprojection error for RHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.4 px (~ 0.019 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.4 px (~ 0.019 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.0 px (~ 0.018 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_40_p0\pose-3d\0_1_40_p0_0-182.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m08s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_41_p0, for all frames.
On Wednesday 11. December 2024, 14:39:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_41_p0

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.6 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_41_p0\pose-3d\0_1_41_p0_0-364.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m19s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_42_p0, for all frames.
On Wednesday 11. December 2024, 14:39:55
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_42_p0

Mean reprojection error for RHip is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.6 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.5 px (~ 0.011 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.8 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.3 px, which roughly corresponds to 10.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_42_p0\pose-3d\0_1_42_p0_0-265.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m12s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_43_p0, for all frames.
On Wednesday 11. December 2024, 14:40:08
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_43_p0

Mean reprojection error for RHip is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.6 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_43_p0\pose-3d\0_1_43_p0_0-253.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m12s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_44_p0, for all frames.
On Wednesday 11. December 2024, 14:40:20
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_44_p0

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.0 px (~ 0.013 m), reached with 0.4 excluded cameras. 
  Frames 216 to 219 were interpolated.
Mean reprojection error for LWrist is 4.1 px (~ 0.018 m), reached with 0.44 excluded cameras. 
  Frames 102 to 103, 215 to 220, 236 to 236 were interpolated.
Mean reprojection error for LThumb is 3.9 px (~ 0.017 m), reached with 0.62 excluded cameras. 
  Frames 102 to 103, 110 to 110, 112 to 115, 117 to 123, 132 to 132, 136 to 136, 140 to 140, 142 to 144, 152 to 152, 158 to 158, 160 to 161, 173 to 174, 182 to 183, 198 to 205, 207 to 207, 210 to 210, 213 to 220, 228 to 228, 230 to 230, 234 to 235 were interpolated.
Mean reprojection error for LIndex is 4.0 px (~ 0.018 m), reached with 0.64 excluded cameras. 
  Frames 101 to 103, 107 to 107, 110 to 110, 117 to 118, 135 to 135, 146 to 146, 157 to 157, 161 to 161, 168 to 168, 173 to 173, 175 to 175, 178 to 183, 185 to 187, 189 to 189, 191 to 193, 203 to 204, 207 to 207, 210 to 210, 213 to 220, 229 to 231, 233 to 234, 237 to 238 were interpolated.
Mean reprojection error for LPinky is 4.4 px (~ 0.019 m), reached with 0.78 excluded cameras. 
  Frames 101 to 105, 113 to 113, 117 to 117, 120 to 123, 127 to 130, 144 to 144, 147 to 147, 161 to 170, 172 to 173, 192 to 193, 197 to 197, 204 to 207, 210 to 210, 230 to 239 were interpolated.
  Frames ['175:189', '213:226'] could not be interpolated: consider adjusting thresholds.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.11 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 7% of the time, Camera cam2: 2%, and Camera cam3: 2%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_44_p0\pose-3d\0_1_44_p0_0-333.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_1_p0, for all frames.
On Wednesday 11. December 2024, 14:40:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_1_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.8 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_1_p0\pose-3d\0_1_1_p0_0-139.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m06s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_18_p0, for all frames.
On Wednesday 11. December 2024, 14:40:44
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.9 px (~ 0.013 m), reached with 0.02 excluded cameras. 
  Frames 212 to 214 were interpolated.
Mean reprojection error for RSmallToe is 2.8 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.012 m), reached with 0.07 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.5 px (~ 0.011 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.5 px (~ 0.02 m), reached with 0.07 excluded cameras. 
  Frames 132 to 132 were interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.1 px (~ 0.018 m), reached with 0.22 excluded cameras. 
  Frames 104 to 104, 139 to 146, 188 to 190, 195 to 195, 197 to 199, 237 to 237, 240 to 240, 242 to 245 were interpolated.
Mean reprojection error for LWrist is 3.3 px (~ 0.015 m), reached with 0.15 excluded cameras. 
  Frames 144 to 148, 188 to 192, 194 to 195, 239 to 240, 242 to 243 were interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.15 excluded cameras. 
  Frames 142 to 142, 188 to 190, 193 to 195, 240 to 240 were interpolated.
Mean reprojection error for LIndex is 3.5 px (~ 0.016 m), reached with 0.12 excluded cameras. 
  Frames 188 to 190, 193 to 194, 245 to 245 were interpolated.
Mean reprojection error for LPinky is 4.0 px (~ 0.018 m), reached with 0.12 excluded cameras. 
  Frames 141 to 141, 147 to 148, 188 to 190, 194 to 195, 198 to 199 were interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.04 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 2% of the time, Camera cam2: 1%, and Camera cam3: 1%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0\pose-3d\0_1_18_p0_0-389.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m21s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_2_p0, for all frames.
On Wednesday 11. December 2024, 14:41:05
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_2_p0

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_2_p0\pose-3d\0_1_2_p0_0-165.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m07s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_8_p0, for all frames.
On Wednesday 11. December 2024, 14:41:13
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_8_p0

Mean reprojection error for RHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_8_p0\pose-3d\0_1_8_p0_0-170.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m08s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_tpose_p1, for all frames.
On Wednesday 11. December 2024, 14:41:21
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_tpose_p1

Mean reprojection error for RHip is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_tpose_p1\pose-3d\0_1_tpose_p1_0-236.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m11s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_11_p1, for all frames.
On Wednesday 11. December 2024, 14:41:33
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_11_p1

Mean reprojection error for RHip is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.5 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.8 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_11_p1\pose-3d\0_1_11_p1_0-187.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m08s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_12_p1, for all frames.
On Wednesday 11. December 2024, 14:41:42
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_12_p1

Mean reprojection error for RHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 5.7 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 5.7 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_12_p1\pose-3d\0_1_12_p1_0-218.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m10s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_13_p1, for all frames.
On Wednesday 11. December 2024, 14:41:52
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_13_p1

Mean reprojection error for RHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_13_p1\pose-3d\0_1_13_p1_0-202.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m09s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_14_p1, for all frames.
On Wednesday 11. December 2024, 14:42:02
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_14_p1

Mean reprojection error for RHip is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_14_p1\pose-3d\0_1_14_p1_0-306.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m15s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_15_p1, for all frames.
On Wednesday 11. December 2024, 14:42:17
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_15_p1

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.3 px (~ 0.01 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_15_p1\pose-3d\0_1_15_p1_0-239.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m11s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_16_p1, for all frames.
On Wednesday 11. December 2024, 14:42:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_16_p1

Mean reprojection error for RHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.5 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_16_p1\pose-3d\0_1_16_p1_0-211.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m10s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_17_p1, for all frames.
On Wednesday 11. December 2024, 14:42:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_17_p1

Mean reprojection error for RHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.8 px (~ 0.026 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.1 px (~ 0.018 m), reached with 0.07 excluded cameras. 
  Frames 10 to 11 were interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_17_p1\pose-3d\0_1_17_p1_0-255.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m12s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_27_p1, for all frames.
On Wednesday 11. December 2024, 14:42:51
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_27_p1

Mean reprojection error for RHip is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.3 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_27_p1\pose-3d\0_1_27_p1_0-361.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m17s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_28_p1, for all frames.
On Wednesday 11. December 2024, 14:43:09
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_28_p1

Mean reprojection error for RHip is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 0.9 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.012 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_28_p1\pose-3d\0_1_28_p1_0-279.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m15s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_29_p1, for all frames.
On Wednesday 11. December 2024, 14:43:24
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_29_p1

Mean reprojection error for RHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_29_p1\pose-3d\0_1_29_p1_0-261.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m12s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_30_p1, for all frames.
On Wednesday 11. December 2024, 14:43:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_30_p1

Mean reprojection error for RHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.3 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.12 excluded cameras. 
  Frames 64 to 64, 94 to 94 were interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_30_p1\pose-3d\0_1_30_p1_0-226.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m10s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_31_p1, for all frames.
On Wednesday 11. December 2024, 14:43:47
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_31_p1

Mean reprojection error for RHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_31_p1\pose-3d\0_1_31_p1_0-230.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m11s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_32_p1, for all frames.
On Wednesday 11. December 2024, 14:43:59
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_32_p1

Mean reprojection error for RHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.3 px (~ 0.019 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  Frames 274 to 274 were interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.1 px (~ 0.009 m), reached with 0.11 excluded cameras. 
  Frames 156 to 157, 159 to 159, 161 to 162 were interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.1 excluded cameras. 
  Frames 156 to 156, 159 to 159, 161 to 162 were interpolated.
Mean reprojection error for LThumb is 3.6 px (~ 0.016 m), reached with 0.12 excluded cameras. 
  Frames 155 to 157, 159 to 159, 161 to 163 were interpolated.
Mean reprojection error for LIndex is 2.7 px (~ 0.012 m), reached with 0.12 excluded cameras. 
  Frames 156 to 157, 159 to 159, 161 to 163 were interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.12 excluded cameras. 
  Frames 156 to 159, 161 to 162 were interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_32_p1\pose-3d\0_1_32_p1_0-299.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m14s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_33_p1, for all frames.
On Wednesday 11. December 2024, 14:44:13
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_33_p1

Mean reprojection error for RHip is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.1 excluded cameras. 
  Frames 201 to 202 were interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 1.1 excluded cameras. 
  Frames 55 to 55, 76 to 76, 122 to 122, 124 to 126, 130 to 131, 140 to 141, 145 to 145, 149 to 158, 160 to 167, 169 to 169, 171 to 173, 175 to 176, 217 to 217, 237 to 237, 241 to 246, 248 to 248, 268 to 268, 270 to 270, 272 to 272, 279 to 279 were interpolated.
  Frames ['190:215', '219:231'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.49 excluded cameras. 
  Frames 54 to 54, 62 to 63, 122 to 123, 150 to 150, 153 to 153, 165 to 166, 170 to 170, 172 to 173, 176 to 177, 179 to 180, 182 to 182, 184 to 184, 186 to 188, 195 to 195, 197 to 197, 238 to 238 were interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.8 px (~ 0.012 m), reached with 0.21 excluded cameras. 
  Frames 70 to 70, 116 to 117, 163 to 163 were interpolated.
Mean reprojection error for LIndex is 2.8 px (~ 0.012 m), reached with 0.16 excluded cameras. 
  Frames 80 to 80, 84 to 85 were interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.32 excluded cameras. 
  Frames 79 to 79, 120 to 120, 125 to 125, 160 to 160 were interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.09 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 4% of the time, Camera cam3: 3%, and Camera cam1: 2%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_33_p1\pose-3d\0_1_33_p1_0-333.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_34_p1, for all frames.
On Wednesday 11. December 2024, 14:44:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_34_p1

Mean reprojection error for RHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.6 px (~ 0.02 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.21 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.21 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.9 px (~ 0.013 m), reached with 0.23 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.25 excluded cameras. 
  Frames 80 to 80 were interpolated.
Mean reprojection error for RPinky is 3.6 px (~ 0.016 m), reached with 0.22 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.2 px (~ 0.014 m), reached with 0.15 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.24 excluded cameras. 
  Frames 68 to 75, 77 to 78, 80 to 80 were interpolated.
Mean reprojection error for LThumb is 3.4 px (~ 0.015 m), reached with 0.28 excluded cameras. 
  No frames needed to be interpolated.
  Frames ['67:81'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LIndex is 3.3 px (~ 0.015 m), reached with 0.3 excluded cameras. 
  Frames 53 to 54, 56 to 56 were interpolated.
  Frames ['67:81'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.29 excluded cameras. 
  No frames needed to be interpolated.
  Frames ['66:81'] could not be interpolated: consider adjusting thresholds.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.09 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 5% of the time, Camera cam1: 3%, and Camera cam2: 1%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_34_p1\pose-3d\0_1_34_p1_0-240.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m11s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_35_p1, for all frames.
On Wednesday 11. December 2024, 14:44:41
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_35_p1

Mean reprojection error for RHip is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.5 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 4.3 px (~ 0.019 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.9 px (~ 0.017 m), reached with 0.15 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.13 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.11 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.1 px (~ 0.018 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.8 px (~ 0.017 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.3 px, which roughly corresponds to 14.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.03 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 2% of the time, Camera cam1: 1%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_35_p1\pose-3d\0_1_35_p1_0-310.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m14s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_45_p1, for all frames.
On Wednesday 11. December 2024, 14:44:56
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_45_p1

Mean reprojection error for RHip is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.6 px (~ 0.025 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.5 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_45_p1\pose-3d\0_1_45_p1_0-261.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m12s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_46_p1, for all frames.
On Wednesday 11. December 2024, 14:45:09
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_46_p1

Mean reprojection error for RHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.3 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.6 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.9 px (~ 0.017 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.9 px (~ 0.017 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.3 px (~ 0.019 m), reached with 0.05 excluded cameras. 
  Frames 182 to 182 were interpolated.
Mean reprojection error for LPinky is 4.5 px (~ 0.02 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.4 px, which roughly corresponds to 15.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_46_p1\pose-3d\0_1_46_p1_0-339.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_47_p1, for all frames.
On Wednesday 11. December 2024, 14:45:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_47_p1

Mean reprojection error for RHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.6 px (~ 0.02 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.1 px (~ 0.018 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.2 px, which roughly corresponds to 14.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_47_p1\pose-3d\0_1_47_p1_0-350.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_48_p1, for all frames.
On Wednesday 11. December 2024, 14:45:42
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_48_p1

Mean reprojection error for RHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.4 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_48_p1\pose-3d\0_1_48_p1_0-353.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m17s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_49_p1, for all frames.
On Wednesday 11. December 2024, 14:45:59
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_49_p1

Mean reprojection error for RHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.6 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.7 px (~ 0.016 m), reached with 0.07 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_49_p1\pose-3d\0_1_49_p1_0-225.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m10s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_50_p1, for all frames.
On Wednesday 11. December 2024, 14:46:10
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_50_p1

Mean reprojection error for RHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.04 excluded cameras. 
  Frames 224 to 224 were interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_50_p1\pose-3d\0_1_50_p1_0-292.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m14s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_51_p1, for all frames.
On Wednesday 11. December 2024, 14:46:24
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_51_p1

Mean reprojection error for RHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.3 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.1 px (~ 0.018 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_51_p1\pose-3d\0_1_51_p1_0-232.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m11s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_52_p1, for all frames.
On Wednesday 11. December 2024, 14:46:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_52_p1

Mean reprojection error for RHip is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.4 px (~ 0.011 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.6 px (~ 0.016 m), reached with 0.02 excluded cameras. 
  Frames 302 to 303 were interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.03 excluded cameras. 
  Frames 303 to 303 were interpolated.
Mean reprojection error for LPinky is 3.6 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_52_p1\pose-3d\0_1_52_p1_0-423.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m20s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_53_p1, for all frames.
On Wednesday 11. December 2024, 14:46:55
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_53_p1

Mean reprojection error for RHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.8 px (~ 0.017 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.4 px (~ 0.019 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.9 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_53_p1\pose-3d\0_1_53_p1_0-279.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m13s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_10_p1, for all frames.
On Wednesday 11. December 2024, 14:47:09
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_10_p1

Mean reprojection error for RHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_10_p1\pose-3d\0_1_10_p1_0-318.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m15s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_1_9_p1, for all frames.
On Wednesday 11. December 2024, 14:47:24
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_9_p1

Mean reprojection error for RHip is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.4 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 6.1 px (~ 0.027 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_9_p1\pose-3d\0_1_9_p1_0-324.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_tpose_p0, for all frames.
On Wednesday 11. December 2024, 14:47:47
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_tpose_p0\pose-3d\0_1_tpose_p0_0-197_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_0_p0, for all frames.
On Wednesday 11. December 2024, 14:47:47
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_0_p0\pose-3d\0_1_0_p0_0-299_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_3_p0, for all frames.
On Wednesday 11. December 2024, 14:47:47
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_3_p0\pose-3d\0_1_3_p0_0-533_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_4_p0, for all frames.
On Wednesday 11. December 2024, 14:47:47
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_4_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_4_p0\pose-3d\0_1_4_p0_0-276_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_5_p0, for all frames.
On Wednesday 11. December 2024, 14:47:48
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_5_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_5_p0\pose-3d\0_1_5_p0_0-175_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_6_p0, for all frames.
On Wednesday 11. December 2024, 14:47:48
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_6_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_6_p0\pose-3d\0_1_6_p0_0-223_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_7_p0, for all frames.
On Wednesday 11. December 2024, 14:47:48
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_7_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_7_p0\pose-3d\0_1_7_p0_0-226_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_19_p0, for all frames.
On Wednesday 11. December 2024, 14:47:48
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_19_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_19_p0\pose-3d\0_1_19_p0_0-352_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_20_p0, for all frames.
On Wednesday 11. December 2024, 14:47:48
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_20_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_20_p0\pose-3d\0_1_20_p0_0-232_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_21_p0, for all frames.
On Wednesday 11. December 2024, 14:47:48
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_21_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_21_p0\pose-3d\0_1_21_p0_0-215_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_22_p0, for all frames.
On Wednesday 11. December 2024, 14:47:48
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_22_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_22_p0\pose-3d\0_1_22_p0_0-274_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_23_p0, for all frames.
On Wednesday 11. December 2024, 14:47:48
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_23_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_23_p0\pose-3d\0_1_23_p0_0-231_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_24_p0, for all frames.
On Wednesday 11. December 2024, 14:47:49
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_24_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_24_p0\pose-3d\0_1_24_p0_0-342_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_25_p0, for all frames.
On Wednesday 11. December 2024, 14:47:49
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_25_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_25_p0\pose-3d\0_1_25_p0_0-370_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_26_p0, for all frames.
On Wednesday 11. December 2024, 14:47:49
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_26_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_26_p0\pose-3d\0_1_26_p0_0-249_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_36_p0, for all frames.
On Wednesday 11. December 2024, 14:47:49
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_36_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_36_p0\pose-3d\0_1_36_p0_0-295_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_37_p0, for all frames.
On Wednesday 11. December 2024, 14:47:49
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_37_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_37_p0\pose-3d\0_1_37_p0_0-238_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_38_p0, for all frames.
On Wednesday 11. December 2024, 14:47:49
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_38_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_38_p0\pose-3d\0_1_38_p0_0-322_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_39_p0, for all frames.
On Wednesday 11. December 2024, 14:47:49
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_39_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_39_p0\pose-3d\0_1_39_p0_0-427_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_40_p0, for all frames.
On Wednesday 11. December 2024, 14:47:50
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_40_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_40_p0\pose-3d\0_1_40_p0_0-182_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_41_p0, for all frames.
On Wednesday 11. December 2024, 14:47:50
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_41_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_41_p0\pose-3d\0_1_41_p0_0-364_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_42_p0, for all frames.
On Wednesday 11. December 2024, 14:47:50
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_42_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_42_p0\pose-3d\0_1_42_p0_0-265_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_43_p0, for all frames.
On Wednesday 11. December 2024, 14:47:50
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_43_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_43_p0\pose-3d\0_1_43_p0_0-253_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_44_p0, for all frames.
On Wednesday 11. December 2024, 14:47:50
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_44_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_44_p0\pose-3d\0_1_44_p0_0-333_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_1_p0, for all frames.
On Wednesday 11. December 2024, 14:47:50
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_1_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_1_p0\pose-3d\0_1_1_p0_0-139_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_18_p0, for all frames.
On Wednesday 11. December 2024, 14:47:50
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_18_p0\pose-3d\0_1_18_p0_0-389_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_2_p0, for all frames.
On Wednesday 11. December 2024, 14:47:51
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_2_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_2_p0\pose-3d\0_1_2_p0_0-165_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_8_p0, for all frames.
On Wednesday 11. December 2024, 14:47:51
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_8_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P0\0_1_8_p0\pose-3d\0_1_8_p0_0-170_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_tpose_p1, for all frames.
On Wednesday 11. December 2024, 14:47:51
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_tpose_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_tpose_p1\pose-3d\0_1_tpose_p1_0-236_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_11_p1, for all frames.
On Wednesday 11. December 2024, 14:47:51
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_11_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_11_p1\pose-3d\0_1_11_p1_0-187_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_12_p1, for all frames.
On Wednesday 11. December 2024, 14:47:51
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_12_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_12_p1\pose-3d\0_1_12_p1_0-218_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_13_p1, for all frames.
On Wednesday 11. December 2024, 14:47:51
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_13_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_13_p1\pose-3d\0_1_13_p1_0-202_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_14_p1, for all frames.
On Wednesday 11. December 2024, 14:47:51
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_14_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_14_p1\pose-3d\0_1_14_p1_0-306_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_15_p1, for all frames.
On Wednesday 11. December 2024, 14:47:51
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_15_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_15_p1\pose-3d\0_1_15_p1_0-239_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_16_p1, for all frames.
On Wednesday 11. December 2024, 14:47:52
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_16_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_16_p1\pose-3d\0_1_16_p1_0-211_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_17_p1, for all frames.
On Wednesday 11. December 2024, 14:47:52
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_17_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_17_p1\pose-3d\0_1_17_p1_0-255_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_27_p1, for all frames.
On Wednesday 11. December 2024, 14:47:52
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_27_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_27_p1\pose-3d\0_1_27_p1_0-361_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_28_p1, for all frames.
On Wednesday 11. December 2024, 14:47:52
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_28_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_28_p1\pose-3d\0_1_28_p1_0-279_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_29_p1, for all frames.
On Wednesday 11. December 2024, 14:47:52
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_29_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_29_p1\pose-3d\0_1_29_p1_0-261_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_30_p1, for all frames.
On Wednesday 11. December 2024, 14:47:52
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_30_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_30_p1\pose-3d\0_1_30_p1_0-226_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_31_p1, for all frames.
On Wednesday 11. December 2024, 14:47:53
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_31_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_31_p1\pose-3d\0_1_31_p1_0-230_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_32_p1, for all frames.
On Wednesday 11. December 2024, 14:47:53
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_32_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_32_p1\pose-3d\0_1_32_p1_0-299_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_33_p1, for all frames.
On Wednesday 11. December 2024, 14:47:53
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_33_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_33_p1\pose-3d\0_1_33_p1_0-333_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_34_p1, for all frames.
On Wednesday 11. December 2024, 14:47:53
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_34_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_34_p1\pose-3d\0_1_34_p1_0-240_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_35_p1, for all frames.
On Wednesday 11. December 2024, 14:47:53
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_35_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_35_p1\pose-3d\0_1_35_p1_0-310_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_45_p1, for all frames.
On Wednesday 11. December 2024, 14:47:53
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_45_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_45_p1\pose-3d\0_1_45_p1_0-261_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_46_p1, for all frames.
On Wednesday 11. December 2024, 14:47:53
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_46_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_46_p1\pose-3d\0_1_46_p1_0-339_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_47_p1, for all frames.
On Wednesday 11. December 2024, 14:47:53
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_47_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_47_p1\pose-3d\0_1_47_p1_0-350_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_48_p1, for all frames.
On Wednesday 11. December 2024, 14:47:54
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_48_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_48_p1\pose-3d\0_1_48_p1_0-353_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_49_p1, for all frames.
On Wednesday 11. December 2024, 14:47:54
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_49_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_49_p1\pose-3d\0_1_49_p1_0-225_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_50_p1, for all frames.
On Wednesday 11. December 2024, 14:47:54
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_50_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_50_p1\pose-3d\0_1_50_p1_0-292_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_51_p1, for all frames.
On Wednesday 11. December 2024, 14:47:54
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_51_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_51_p1\pose-3d\0_1_51_p1_0-232_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_52_p1, for all frames.
On Wednesday 11. December 2024, 14:47:54
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_52_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_52_p1\pose-3d\0_1_52_p1_0-423_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_53_p1, for all frames.
On Wednesday 11. December 2024, 14:47:54
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_53_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_53_p1\pose-3d\0_1_53_p1_0-279_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_10_p1, for all frames.
On Wednesday 11. December 2024, 14:47:54
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_10_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_10_p1\pose-3d\0_1_10_p1_0-318_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_1_9_p1, for all frames.
On Wednesday 11. December 2024, 14:47:54
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_9_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_1\P1\0_1_9_p1\pose-3d\0_1_9_p1_0-324_filt_butterworth.trc.



---------------------------------------------------------------------
Triangulation of 2D points for 0_2_0_p0, for all frames.
On Wednesday 11. December 2024, 14:48:10
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_0_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.8 px (~ 0.012 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_0_p0\pose-3d\0_2_0_p0_0-188.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m09s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_1_p0, for all frames.
On Wednesday 11. December 2024, 14:48:19
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_1_p0

Mean reprojection error for RHip is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.09 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.09 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.3 px (~ 0.015 m), reached with 0.13 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.8 px (~ 0.017 m), reached with 0.12 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.7 px (~ 0.016 m), reached with 0.11 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 2% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_1_p0\pose-3d\0_2_1_p0_0-222.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m10s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_2_p0, for all frames.
On Wednesday 11. December 2024, 14:48:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_2_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.9 px (~ 0.013 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.8 px (~ 0.021 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.7 px (~ 0.016 m), reached with 0.11 excluded cameras. 
  Frames 50 to 51, 53 to 54, 67 to 67, 72 to 72 were interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.09 excluded cameras. 
  Frames 71 to 71, 83 to 83 were interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.3 px (~ 0.015 m), reached with 0.25 excluded cameras. 
  Frames 260 to 267, 281 to 284, 292 to 300 were interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.12 excluded cameras. 
  Frames 265 to 267, 280 to 282 were interpolated.
Mean reprojection error for LThumb is 3.4 px (~ 0.015 m), reached with 0.09 excluded cameras. 
  Frames 267 to 267, 280 to 280 were interpolated.
Mean reprojection error for LIndex is 3.5 px (~ 0.016 m), reached with 0.13 excluded cameras. 
  Frames 266 to 267, 280 to 281 were interpolated.
Mean reprojection error for LPinky is 3.5 px (~ 0.016 m), reached with 0.13 excluded cameras. 
  Frames 118 to 118, 266 to 267, 281 to 281 were interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.04 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 2% of the time, Camera cam2: 2%, and Camera cam3: 1%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_2_p0\pose-3d\0_2_2_p0_0-403.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m20s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_3_p0, for all frames.
On Wednesday 11. December 2024, 14:48:50
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_3_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.07 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_3_p0\pose-3d\0_2_3_p0_0-153.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m07s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_4_p0, for all frames.
On Wednesday 11. December 2024, 14:48:57
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_4_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  Frames 261 to 261 were interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_4_p0\pose-3d\0_2_4_p0_0-600.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m22s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_5_p0, for all frames.
On Wednesday 11. December 2024, 14:49:19
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_5_p0

Mean reprojection error for RHip is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.0 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_5_p0\pose-3d\0_2_5_p0_0-179.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m06s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_6_p0, for all frames.
On Wednesday 11. December 2024, 14:49:26
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_6_p0

Mean reprojection error for RHip is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_6_p0\pose-3d\0_2_6_p0_0-318.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m14s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_7_p0, for all frames.
On Wednesday 11. December 2024, 14:49:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_7_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.9 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.1 px (~ 0.018 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.4 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_7_p0\pose-3d\0_2_7_p0_0-472.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m22s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_8_p0, for all frames.
On Wednesday 11. December 2024, 14:50:03
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_8_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.9 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_8_p0\pose-3d\0_2_8_p0_0-189.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m09s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_9_p0, for all frames.
On Wednesday 11. December 2024, 14:50:12
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_9_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.9 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_9_p0\pose-3d\0_2_9_p0_0-232.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m11s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_10_p0, for all frames.
On Wednesday 11. December 2024, 14:50:23
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_10_p0

Mean reprojection error for RHip is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.4 px (~ 0.015 m), reached with 0.02 excluded cameras. 
  Frames 74 to 74 were interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.2 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_10_p0\pose-3d\0_2_10_p0_0-347.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_11_p0, for all frames.
On Wednesday 11. December 2024, 14:50:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_11_p0

Mean reprojection error for RHip is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.08 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.07 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.15 excluded cameras. 
  Frames 188 to 188, 190 to 190, 206 to 206 were interpolated.
Mean reprojection error for LIndex is 3.3 px (~ 0.015 m), reached with 0.08 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.2 px (~ 0.014 m), reached with 0.08 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 2% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_11_p0\pose-3d\0_2_11_p0_0-329.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m15s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_12_p0, for all frames.
On Wednesday 11. December 2024, 14:50:56
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_12_p0

Mean reprojection error for RHip is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.4 px (~ 0.015 m), reached with 0.07 excluded cameras. 
  Frames 244 to 244 were interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_12_p0\pose-3d\0_2_12_p0_0-364.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m17s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_13_p0, for all frames.
On Wednesday 11. December 2024, 14:51:13
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_13_p0

Mean reprojection error for RHip is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.09 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.4 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.5 px (~ 0.016 m), reached with 0.2 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.24 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.7 px (~ 0.016 m), reached with 0.19 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.03 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 3% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_13_p0\pose-3d\0_2_13_p0_0-319.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m15s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_14_p0, for all frames.
On Wednesday 11. December 2024, 14:51:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_14_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 0.9 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.2 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.7 px (~ 0.016 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.32 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.3 px (~ 0.015 m), reached with 0.39 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.5 px (~ 0.02 m), reached with 0.17 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.04 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 3% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_14_p0\pose-3d\0_2_14_p0_0-391.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m19s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_15_p0, for all frames.
On Wednesday 11. December 2024, 14:51:48
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_15_p0

Mean reprojection error for RHip is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_15_p0\pose-3d\0_2_15_p0_0-182.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m10s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_16_p0, for all frames.
On Wednesday 11. December 2024, 14:51:58
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_16_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.6 px (~ 0.016 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.5 px (~ 0.02 m), reached with 0.05 excluded cameras. 
  Frames 90 to 90 were interpolated.
Mean reprojection error for LWrist is 3.7 px (~ 0.016 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.5 px (~ 0.016 m), reached with 0.12 excluded cameras. 
  Frames 95 to 96 were interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.1 excluded cameras. 
  Frames 97 to 97 were interpolated.
Mean reprojection error for LPinky is 3.5 px (~ 0.016 m), reached with 0.08 excluded cameras. 
  Frames 97 to 97 were interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_16_p0\pose-3d\0_2_16_p0_0-218.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m10s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_17_p0, for all frames.
On Wednesday 11. December 2024, 14:52:08
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_17_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.0 px (~ 0.004 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.7 px (~ 0.016 m), reached with 0.08 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.5 px (~ 0.016 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.2 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.7 px (~ 0.016 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.0 px (~ 0.018 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.2 px (~ 0.019 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 1% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_17_p0\pose-3d\0_2_17_p0_0-274.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m14s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_18_p0, for all frames.
On Wednesday 11. December 2024, 14:52:22
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_18_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 0.9 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.44 excluded cameras. 
  Frames 235 to 241 were interpolated.
  Frames ['243:290'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.48 excluded cameras. 
  Frames 221 to 221, 348 to 348 were interpolated.
  Frames ['229:291'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for RPinky is 3.9 px (~ 0.017 m), reached with 0.48 excluded cameras. 
  Frames 225 to 232 were interpolated.
  Frames ['235:292'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 5.0 px (~ 0.022 m), reached with 0.21 excluded cameras. 
  Frames 210 to 211, 329 to 338, 341 to 341, 346 to 351 were interpolated.
Mean reprojection error for LWrist is 3.7 px (~ 0.016 m), reached with 0.06 excluded cameras. 
  Frames 332 to 332, 334 to 339, 341 to 341 were interpolated.
Mean reprojection error for LThumb is 3.3 px (~ 0.015 m), reached with 0.19 excluded cameras. 
  Frames 186 to 186, 346 to 346 were interpolated.
  Frames ['329:341'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LIndex is 3.5 px (~ 0.016 m), reached with 0.12 excluded cameras. 
  Frames 348 to 349 were interpolated.
  Frames ['330:341'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LPinky is 3.2 px (~ 0.014 m), reached with 0.11 excluded cameras. 
  No frames needed to be interpolated.
  Frames ['330:340'] could not be interpolated: consider adjusting thresholds.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.08 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 3% of the time, Camera cam2: 3%, and Camera cam3: 2%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_18_p0\pose-3d\0_2_18_p0_0-448.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m23s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_38_p0, for all frames.
On Wednesday 11. December 2024, 14:52:46
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_38_p0

Mean reprojection error for RHip is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.5 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.8 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.9 px (~ 0.013 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.1 px (~ 0.014 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.5 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.08 excluded cameras. 
  Frames 328 to 332, 337 to 337 were interpolated.
Mean reprojection error for LHeel is 2.8 px (~ 0.012 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.2 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 1% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_38_p0\pose-3d\0_2_38_p0_0-469.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m22s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_39_p0, for all frames.
On Wednesday 11. December 2024, 14:53:08
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_39_p0

Mean reprojection error for RHip is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.04 excluded cameras. 
  Frames 153 to 153 were interpolated.
Mean reprojection error for LIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_39_p0\pose-3d\0_2_39_p0_0-407.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m19s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_40_p0, for all frames.
On Wednesday 11. December 2024, 14:53:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_40_p0

Mean reprojection error for RHip is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.4 px (~ 0.015 m), reached with 0.05 excluded cameras. 
  Frames 179 to 179 were interpolated.
Mean reprojection error for LIndex is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_40_p0\pose-3d\0_2_40_p0_0-367.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m18s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_41_p0, for all frames.
On Wednesday 11. December 2024, 14:53:46
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_41_p0

Mean reprojection error for RHip is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.0 px (~ 0.018 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_41_p0\pose-3d\0_2_41_p0_0-291.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m14s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_42_p0, for all frames.
On Wednesday 11. December 2024, 14:54:01
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_42_p0

Mean reprojection error for RHip is 5.9 px (~ 0.026 m), reached with 0.19 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.1 px (~ 0.023 m), reached with 0.21 excluded cameras. 
  Frames 107 to 115, 119 to 119, 121 to 126, 281 to 282 were interpolated.
Mean reprojection error for RAnkle is 2.9 px (~ 0.013 m), reached with 1.03 excluded cameras. 
  Frames 99 to 100, 188 to 188, 258 to 262, 281 to 289 were interpolated.
  Frames ['86:97', '106:184'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for RBigToe is 3.5 px (~ 0.016 m), reached with 1.33 excluded cameras. 
  Frames 193 to 193 were interpolated.
  Frames ['77:191', '203:227', '279:291'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for RSmallToe is 3.0 px (~ 0.013 m), reached with 1.28 excluded cameras. 
  Frames 195 to 195, 199 to 199, 206 to 208, 212 to 212, 214 to 214, 216 to 216, 222 to 222, 232 to 237 were interpolated.
  Frames ['77:190', '279:293'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for RHeel is 3.5 px (~ 0.016 m), reached with 1.2 excluded cameras. 
  Frames 258 to 261, 293 to 293 were interpolated.
  Frames ['77:188', '279:291'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LHip is 5.1 px (~ 0.023 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.9 px (~ 0.022 m), reached with 0.25 excluded cameras. 
  Frames 269 to 269, 272 to 275, 277 to 278 were interpolated.
  Frames ['252:267'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LAnkle is 4.5 px (~ 0.02 m), reached with 1.09 excluded cameras. 
  Frames 81 to 81, 85 to 86, 89 to 92, 94 to 95, 99 to 100, 105 to 105, 107 to 108, 110 to 113, 116 to 119, 121 to 127, 129 to 129, 141 to 141, 269 to 269, 274 to 274, 278 to 287 were interpolated.
  Frames ['174:242'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 1.85 excluded cameras. 
  No frames needed to be interpolated.
  Frames ['75:315'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 1.85 excluded cameras. 
  No frames needed to be interpolated.
  Frames ['76:316'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LHeel is 3.4 px (~ 0.015 m), reached with 1.74 excluded cameras. 
  Frames 272 to 272, 310 to 311, 313 to 313 were interpolated.
  Frames ['78:269', '274:291', '295:305'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for Neck is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 4.2 px (~ 0.019 m), reached with 0.08 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.7 px (~ 0.016 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.2 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.9 px (~ 0.017 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.4 px (~ 0.015 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.8 px, which roughly corresponds to 16.8 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.46 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 18% of the time, Camera cam2: 14%, and Camera cam1: 14%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_42_p0\pose-3d\0_2_42_p0_0-395.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m19s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_43_p0, for all frames.
On Wednesday 11. December 2024, 14:54:20
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_43_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.5 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.6 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_43_p0\pose-3d\0_2_43_p0_0-352.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m17s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_44_p0, for all frames.
On Wednesday 11. December 2024, 14:54:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_44_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.5 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_44_p0\pose-3d\0_2_44_p0_0-364.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m17s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_45_p0, for all frames.
On Wednesday 11. December 2024, 14:54:55
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_45_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_45_p0\pose-3d\0_2_45_p0_0-340.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_46_p0, for all frames.
On Wednesday 11. December 2024, 14:55:12
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_46_p0

Mean reprojection error for RHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.2 px (~ 0.019 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.7 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.6 px (~ 0.016 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.7 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.5 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_46_p0\pose-3d\0_2_46_p0_0-437.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m21s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_47_p0, for all frames.
On Wednesday 11. December 2024, 14:55:33
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_47_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 0.9 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.3 px (~ 0.019 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_47_p0\pose-3d\0_2_47_p0_0-225.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m11s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_48_p0, for all frames.
On Wednesday 11. December 2024, 14:55:45
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_48_p0

Mean reprojection error for RHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.5 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_48_p0\pose-3d\0_2_48_p0_0-323.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m17s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_49_p0, for all frames.
On Wednesday 11. December 2024, 14:56:02
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_49_p0

Mean reprojection error for RHip is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.4 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.1 excluded cameras. 
  Frames 118 to 118 were interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.49 excluded cameras. 
  Frames 105 to 105, 107 to 107, 124 to 127 were interpolated.
  Frames ['110:121'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, Camera cam2: 1%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_49_p0\pose-3d\0_2_49_p0_0-204.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m09s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_50_p0, for all frames.
On Wednesday 11. December 2024, 14:56:12
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_50_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.35 excluded cameras. 
  Frames 185 to 185, 187 to 194, 200 to 200 were interpolated.
  Frames ['162:178'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.22 excluded cameras. 
  Frames 167 to 171, 173 to 177 were interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, Camera cam3: 1%, and Camera cam2: 1%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_50_p0\pose-3d\0_2_50_p0_0-332.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_51_p0, for all frames.
On Wednesday 11. December 2024, 14:56:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_51_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.1 px (~ 0.018 m), reached with 0.57 excluded cameras. 
  Frames 279 to 288, 333 to 336 were interpolated.
  Frames ['290:303', '339:369'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for RIndex is 3.8 px (~ 0.017 m), reached with 0.36 excluded cameras. 
  Frames 280 to 280, 284 to 286, 298 to 298, 332 to 336, 347 to 347, 349 to 351 were interpolated.
  Frames ['353:371'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for RPinky is 3.2 px (~ 0.014 m), reached with 0.34 excluded cameras. 
  Frames 276 to 280, 283 to 283, 301 to 303 were interpolated.
  Frames ['306:317'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.5 px (~ 0.016 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.05 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 2% of the time, Camera cam1: 1%, and Camera cam2: 1%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_51_p0\pose-3d\0_2_51_p0_0-426.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m21s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_52_p0, for all frames.
On Wednesday 11. December 2024, 14:56:50
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_52_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.2 px (~ 0.019 m), reached with 0.1 excluded cameras. 
  Frames 243 to 243 were interpolated.
Mean reprojection error for RIndex is 3.8 px (~ 0.017 m), reached with 0.15 excluded cameras. 
  Frames 309 to 309 were interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.09 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.6 px (~ 0.016 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.7 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  Frames 243 to 243 were interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 1% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_52_p0\pose-3d\0_2_52_p0_0-452.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m22s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_67_p0, for all frames.
On Wednesday 11. December 2024, 14:57:12
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_67_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_67_p0\pose-3d\0_2_67_p0_0-205.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m10s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_68_p0, for all frames.
On Wednesday 11. December 2024, 14:57:23
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_68_p0

Mean reprojection error for RHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.4 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_68_p0\pose-3d\0_2_68_p0_0-297.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m14s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_69_p0, for all frames.
On Wednesday 11. December 2024, 14:57:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_69_p0

Mean reprojection error for RHip is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.7 px (~ 0.021 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 6.1 px (~ 0.027 m), reached with 0.28 excluded cameras. 
  Frames 231 to 231, 293 to 294 were interpolated.
Mean reprojection error for LIndex is 7.3 px (~ 0.032 m), reached with 0.35 excluded cameras. 
  Frames 215 to 215, 230 to 239, 257 to 257, 266 to 266 were interpolated.
Mean reprojection error for LPinky is 6.2 px (~ 0.027 m), reached with 0.28 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.2 px, which roughly corresponds to 14.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.03 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 3% of the time, Camera cam3: 1%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_69_p0\pose-3d\0_2_69_p0_0-338.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_70_p0, for all frames.
On Wednesday 11. December 2024, 14:57:54
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_70_p0

Mean reprojection error for RHip is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_70_p0\pose-3d\0_2_70_p0_0-455.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m22s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_71_p0, for all frames.
On Wednesday 11. December 2024, 14:58:17
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_71_p0

Mean reprojection error for RHip is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_71_p0\pose-3d\0_2_71_p0_0-246.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m12s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_72_p0, for all frames.
On Wednesday 11. December 2024, 14:58:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_72_p0

Mean reprojection error for RHip is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_72_p0\pose-3d\0_2_72_p0_0-301.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m15s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_73_p0, for all frames.
On Wednesday 11. December 2024, 14:58:45
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_73_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_73_p0\pose-3d\0_2_73_p0_0-320.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m15s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_74_p0, for all frames.
On Wednesday 11. December 2024, 14:59:00
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_74_p0

Mean reprojection error for RHip is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_74_p0\pose-3d\0_2_74_p0_0-302.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m15s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_75_p0, for all frames.
On Wednesday 11. December 2024, 14:59:15
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_75_p0

Mean reprojection error for RHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.9 px (~ 0.022 m), reached with 0.17 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.6 px (~ 0.016 m), reached with 0.25 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 5.8 px (~ 0.026 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.9 px (~ 0.022 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 4.2 px (~ 0.019 m), reached with 0.23 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 5.4 px (~ 0.024 m), reached with 0.46 excluded cameras. 
  Frames 185 to 185, 190 to 190 were interpolated.
Mean reprojection error for LIndex is 5.9 px (~ 0.026 m), reached with 0.37 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 6.3 px (~ 0.028 m), reached with 0.37 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.2 px, which roughly corresponds to 14.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.07 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 5% of the time, Camera cam3: 2%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_75_p0\pose-3d\0_2_75_p0_0-320.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m19s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_76_p0, for all frames.
On Wednesday 11. December 2024, 14:59:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_76_p0

Mean reprojection error for RHip is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_76_p0\pose-3d\0_2_76_p0_0-224.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m11s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_77_p0, for all frames.
On Wednesday 11. December 2024, 14:59:46
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_77_p0

Mean reprojection error for RHip is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.3 px, which roughly corresponds to 10.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_77_p0\pose-3d\0_2_77_p0_0-272.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m13s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_78_p0, for all frames.
On Wednesday 11. December 2024, 15:00:00
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_78_p0

Mean reprojection error for RHip is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.3 px, which roughly corresponds to 10.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_78_p0\pose-3d\0_2_78_p0_0-257.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m13s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_79_p0, for all frames.
On Wednesday 11. December 2024, 15:00:13
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_79_p0

Mean reprojection error for RHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_79_p0\pose-3d\0_2_79_p0_0-254.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_80_p0, for all frames.
On Wednesday 11. December 2024, 15:00:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_80_p0

Mean reprojection error for RHip is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_80_p0\pose-3d\0_2_80_p0_0-204.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m10s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_81_p0, for all frames.
On Wednesday 11. December 2024, 15:00:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_81_p0

Mean reprojection error for RHip is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_81_p0\pose-3d\0_2_81_p0_0-248.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m12s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_82_p0, for all frames.
On Wednesday 11. December 2024, 15:00:52
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_82_p0

Mean reprojection error for RHip is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_82_p0\pose-3d\0_2_82_p0_0-317.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m15s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_83_p0, for all frames.
On Wednesday 11. December 2024, 15:01:08
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_83_p0

Mean reprojection error for RHip is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_83_p0\pose-3d\0_2_83_p0_0-333.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_84_p0, for all frames.
On Wednesday 11. December 2024, 15:01:24
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_84_p0

Mean reprojection error for RHip is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_84_p0\pose-3d\0_2_84_p0_0-302.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m14s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_85_p0, for all frames.
On Wednesday 11. December 2024, 15:01:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_85_p0

Mean reprojection error for RHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.1 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.5 px, which roughly corresponds to 11.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_85_p0\pose-3d\0_2_85_p0_0-249.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m17s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_86_p0, for all frames.
On Wednesday 11. December 2024, 15:01:57
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_86_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_86_p0\pose-3d\0_2_86_p0_0-221.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m10s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_87_p0, for all frames.
On Wednesday 11. December 2024, 15:02:07
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_87_p0

Mean reprojection error for RHip is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_87_p0\pose-3d\0_2_87_p0_0-221.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m11s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_88_p0, for all frames.
On Wednesday 11. December 2024, 15:02:18
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_88_p0

Mean reprojection error for RHip is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_88_p0\pose-3d\0_2_88_p0_0-176.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m08s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_89_p0, for all frames.
On Wednesday 11. December 2024, 15:02:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_89_p0

Mean reprojection error for RHip is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.2 px (~ 0.01 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.3 px (~ 0.015 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.6 px (~ 0.016 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_89_p0\pose-3d\0_2_89_p0_0-333.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_90_p0, for all frames.
On Wednesday 11. December 2024, 15:02:43
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_90_p0

Mean reprojection error for RHip is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.0 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_90_p0\pose-3d\0_2_90_p0_0-234.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m11s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_91_p0, for all frames.
On Wednesday 11. December 2024, 15:02:55
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_91_p0

Mean reprojection error for RHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.4 px, which roughly corresponds to 10.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.


3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_91_p0\pose-3d\0_2_91_p0_0-188.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m11s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_19_p1, for all frames.
On Wednesday 11. December 2024, 15:03:07
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_19_p1

Mean reprojection error for RHip is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.6 px (~ 0.012 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.0 px (~ 0.013 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.2 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.6 px, which roughly corresponds to 11.5 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam2: 0%, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_19_p1\pose-3d\0_2_19_p1_0-263.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m13s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_20_p1, for all frames.
On Wednesday 11. December 2024, 15:03:20
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_20_p1

Mean reprojection error for RHip is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.8 px (~ 0.026 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 6.1 px (~ 0.027 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.9 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_20_p1\pose-3d\0_2_20_p1_0-268.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m13s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_21_p1, for all frames.
On Wednesday 11. December 2024, 15:03:33
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_21_p1

Mean reprojection error for RHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.3 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.6 px (~ 0.016 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.5 px (~ 0.016 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.8 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_21_p1\pose-3d\0_2_21_p1_0-280.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m14s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_22_p1, for all frames.
On Wednesday 11. December 2024, 15:03:47
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_22_p1

Mean reprojection error for RHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.3 px (~ 0.019 m), reached with 0.09 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 4.5 px (~ 0.02 m), reached with 0.09 excluded cameras. 
  Frames 330 to 331, 346 to 346, 349 to 349 were interpolated.
Mean reprojection error for RPinky is 4.6 px (~ 0.02 m), reached with 0.15 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.5 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.8 px (~ 0.017 m), reached with 0.08 excluded cameras. 
  Frames 332 to 334 were interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, Camera cam2: 1%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_22_p1\pose-3d\0_2_22_p1_0-398.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m19s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_23_p1, for all frames.
On Wednesday 11. December 2024, 15:04:07
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_23_p1

Mean reprojection error for RHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_23_p1\pose-3d\0_2_23_p1_0-300.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_24_p1, for all frames.
On Wednesday 11. December 2024, 15:04:23
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_24_p1

Mean reprojection error for RHip is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.6 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.7 px (~ 0.012 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.8 px (~ 0.012 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_24_p1\pose-3d\0_2_24_p1_0-312.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m15s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_25_p1, for all frames.
On Wednesday 11. December 2024, 15:04:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_25_p1

Mean reprojection error for RHip is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.3 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.03 excluded cameras. 
  Frames 300 to 300 were interpolated.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_25_p1\pose-3d\0_2_25_p1_0-307.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_26_p1, for all frames.
On Wednesday 11. December 2024, 15:04:55
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_26_p1

Mean reprojection error for RHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.8 px (~ 0.026 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.6 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_26_p1\pose-3d\0_2_26_p1_0-332.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_27_p1, for all frames.
On Wednesday 11. December 2024, 15:05:11
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_27_p1

Mean reprojection error for RHip is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.9 px (~ 0.026 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.3 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.8 px (~ 0.012 m), reached with 0.12 excluded cameras. 
  Frames 103 to 104, 106 to 111, 114 to 116, 119 to 119 were interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.06 excluded cameras. 
  Frames 107 to 107, 110 to 110 were interpolated.
Mean reprojection error for RPinky is 3.0 px (~ 0.013 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_27_p1\pose-3d\0_2_27_p1_0-352.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m17s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_28_p1, for all frames.
On Wednesday 11. December 2024, 15:05:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_28_p1

Mean reprojection error for RHip is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 6.3 px (~ 0.028 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.25 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.1 px (~ 0.014 m), reached with 0.24 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.6 px (~ 0.012 m), reached with 0.81 excluded cameras. 
  Frames 114 to 118 were interpolated.
  Frames ['120:209'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for RIndex is 2.1 px (~ 0.009 m), reached with 0.8 excluded cameras. 
  Frames 111 to 111, 113 to 118, 122 to 124 were interpolated.
  Frames ['130:151', '153:208'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for RPinky is 3.8 px (~ 0.017 m), reached with 0.72 excluded cameras. 
  Frames 110 to 111, 114 to 118, 123 to 129, 131 to 136, 138 to 138, 140 to 140, 142 to 149, 151 to 151, 155 to 160, 200 to 202, 204 to 208 were interpolated.
  Frames ['162:196'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.1 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 5% of the time, Camera cam2: 3%, and Camera cam1: 3%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_28_p1\pose-3d\0_2_28_p1_0-363.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m17s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_29_p1, for all frames.
On Wednesday 11. December 2024, 15:05:47
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_29_p1

Mean reprojection error for RHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.3 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_29_p1\pose-3d\0_2_29_p1_0-262.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m13s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_30_p1, for all frames.
On Wednesday 11. December 2024, 15:06:01
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_30_p1

Mean reprojection error for RHip is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.0 px (~ 0.004 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.2 px (~ 0.019 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_30_p1\pose-3d\0_2_30_p1_0-332.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_31_p1, for all frames.
On Wednesday 11. December 2024, 15:06:18
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_31_p1

Mean reprojection error for RHip is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.3 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 6.2 px (~ 0.027 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_31_p1\pose-3d\0_2_31_p1_0-433.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m22s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_32_p1, for all frames.
On Wednesday 11. December 2024, 15:06:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_32_p1

Mean reprojection error for RHip is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.4 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.6 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_32_p1\pose-3d\0_2_32_p1_0-300.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m15s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_33_p1, for all frames.
On Wednesday 11. December 2024, 15:06:55
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_33_p1

Mean reprojection error for RHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.6 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_33_p1\pose-3d\0_2_33_p1_0-220.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m11s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_34_p1, for all frames.
On Wednesday 11. December 2024, 15:07:07
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_34_p1

Mean reprojection error for RHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.07 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_34_p1\pose-3d\0_2_34_p1_0-242.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m12s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_35_p1, for all frames.
On Wednesday 11. December 2024, 15:07:19
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_35_p1

Mean reprojection error for RHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.6 px (~ 0.016 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_35_p1\pose-3d\0_2_35_p1_0-327.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_36_p1, for all frames.
On Wednesday 11. December 2024, 15:07:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_36_p1

Mean reprojection error for RHip is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.9 px (~ 0.017 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.1 px (~ 0.018 m), reached with 0.07 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_36_p1\pose-3d\0_2_36_p1_0-256.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m13s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_37_p1, for all frames.
On Wednesday 11. December 2024, 15:07:49
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_37_p1

Mean reprojection error for RHip is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.4 px (~ 0.024 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.1 px (~ 0.009 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.3 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 3.3 px (~ 0.015 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.8 px (~ 0.017 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.2 px (~ 0.019 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.5 px (~ 0.016 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.6 px (~ 0.016 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 1% of the time, Camera cam1: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_37_p1\pose-3d\0_2_37_p1_0-391.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m19s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_53_p1, for all frames.
On Wednesday 11. December 2024, 15:08:09
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_53_p1

Mean reprojection error for RHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.7 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.1 px (~ 0.009 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_53_p1\pose-3d\0_2_53_p1_0-405.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m21s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_54_p1, for all frames.
On Wednesday 11. December 2024, 15:08:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_54_p1

Mean reprojection error for RHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 6.2 px (~ 0.027 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.0 px (~ 0.013 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam2: 0%, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_54_p1\pose-3d\0_2_54_p1_0-445.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m21s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_55_p1, for all frames.
On Wednesday 11. December 2024, 15:08:52
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_55_p1

Mean reprojection error for RHip is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.3 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  Frames 497 to 497 were interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.2 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.7 px (~ 0.012 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_55_p1\pose-3d\0_2_55_p1_0-499.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m24s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_56_p1, for all frames.
On Wednesday 11. December 2024, 15:09:16
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_56_p1

Mean reprojection error for RHip is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.7 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.6 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.4 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_56_p1\pose-3d\0_2_56_p1_0-210.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m10s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_57_p1, for all frames.
On Wednesday 11. December 2024, 15:09:26
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_57_p1

Mean reprojection error for RHip is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.8 px (~ 0.017 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.3 px (~ 0.015 m), reached with 0.09 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, Camera cam2: 0%, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_57_p1\pose-3d\0_2_57_p1_0-316.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m15s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_58_p1, for all frames.
On Wednesday 11. December 2024, 15:09:42
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_58_p1

Mean reprojection error for RHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 6.8 px (~ 0.03 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.9 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.6 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_58_p1\pose-3d\0_2_58_p1_0-320.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m17s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_59_p1, for all frames.
On Wednesday 11. December 2024, 15:09:59
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_59_p1

Mean reprojection error for RHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.6 px (~ 0.02 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.3 px (~ 0.019 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.6 px (~ 0.016 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.8 px (~ 0.017 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.9 px (~ 0.017 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_59_p1\pose-3d\0_2_59_p1_0-321.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m15s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_60_p1, for all frames.
On Wednesday 11. December 2024, 15:10:15
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_60_p1

Mean reprojection error for RHip is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.8 px (~ 0.026 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.07 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.08 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_60_p1\pose-3d\0_2_60_p1_0-205.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m10s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_61_p1, for all frames.
On Wednesday 11. December 2024, 15:10:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_61_p1

Mean reprojection error for RHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.6 px (~ 0.016 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.6 px (~ 0.012 m), reached with 0.34 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.34 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.3 px (~ 0.015 m), reached with 0.35 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.7 px (~ 0.016 m), reached with 0.26 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.5 px (~ 0.011 m), reached with 0.2 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.06 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 5% of the time, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_61_p1\pose-3d\0_2_61_p1_0-183.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m09s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_62_p1, for all frames.
On Wednesday 11. December 2024, 15:10:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_62_p1

Mean reprojection error for RHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.5 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.7 px (~ 0.016 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.23 excluded cameras. 
  Frames 189 to 189, 191 to 191, 290 to 290 were interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.1 excluded cameras. 
  Frames 283 to 283, 288 to 289 were interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_62_p1\pose-3d\0_2_62_p1_0-323.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m15s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_63_p1, for all frames.
On Wednesday 11. December 2024, 15:10:51
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_63_p1

Mean reprojection error for RHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.3 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.2 px (~ 0.019 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.3 px (~ 0.015 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.6 px (~ 0.016 m), reached with 0.05 excluded cameras. 
  Frames 239 to 239 were interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam2: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_63_p1\pose-3d\0_2_63_p1_0-436.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m21s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_64_p1, for all frames.
On Wednesday 11. December 2024, 15:11:12
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_64_p1

Mean reprojection error for RHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.4 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.6 px (~ 0.012 m), reached with 0.14 excluded cameras. 
  Frames 306 to 307, 318 to 318, 352 to 352, 374 to 374 were interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.6 px (~ 0.016 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam3: 0%, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_64_p1\pose-3d\0_2_64_p1_0-461.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m24s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_65_p1, for all frames.
On Wednesday 11. December 2024, 15:11:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_65_p1

Mean reprojection error for RHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.18 excluded cameras. 
  Frames 89 to 90, 111 to 111, 128 to 128, 130 to 130 were interpolated.
Mean reprojection error for RPinky is 4.4 px (~ 0.019 m), reached with 0.07 excluded cameras. 
  Frames 82 to 84 were interpolated.
Mean reprojection error for LShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.9 px (~ 0.017 m), reached with 0.18 excluded cameras. 
  Frames 82 to 82 were interpolated.
Mean reprojection error for LIndex is 3.7 px (~ 0.016 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.02 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, Camera cam2: 1%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_65_p1\pose-3d\0_2_65_p1_0-257.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m12s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_66_p1, for all frames.
On Wednesday 11. December 2024, 15:11:49
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_66_p1

Mean reprojection error for RHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 6.5 px (~ 0.029 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.1 px (~ 0.014 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 4.0 px (~ 0.018 m), reached with 0.81 excluded cameras. 
  Frames 247 to 251, 255 to 263 were interpolated.
  Frames ['160:209', '316:339'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.71 excluded cameras. 
  Frames 246 to 246, 249 to 249, 254 to 256 were interpolated.
  Frames ['161:211', '317:338'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LThumb is 3.6 px (~ 0.016 m), reached with 0.72 excluded cameras. 
  Frames 246 to 246, 256 to 256, 296 to 296 were interpolated.
  Frames ['161:211', '317:338'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LIndex is 3.9 px (~ 0.017 m), reached with 0.68 excluded cameras. 
  Frames 129 to 129 were interpolated.
  Frames ['161:211', '317:338'] could not be interpolated: consider adjusting thresholds.
Mean reprojection error for LPinky is 3.7 px (~ 0.016 m), reached with 0.72 excluded cameras. 
  Frames 247 to 247, 250 to 251, 256 to 256, 296 to 296 were interpolated.
  Frames ['161:211', '317:338'] could not be interpolated: consider adjusting thresholds.

--> Mean reprojection error for all points on all frames is 3.3 px, which roughly corresponds to 14.6 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.14 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 6% of the time, Camera cam2: 4%, and Camera cam3: 4%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_66_p1\pose-3d\0_2_66_p1_0-382.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m19s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_92_p1, for all frames.
On Wednesday 11. December 2024, 15:12:09
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_92_p1

Mean reprojection error for RHip is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 6.1 px (~ 0.027 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 6.5 px (~ 0.029 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.5 px (~ 0.011 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_92_p1\pose-3d\0_2_92_p1_0-255.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m12s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_93_p1, for all frames.
On Wednesday 11. December 2024, 15:12:22
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_93_p1

Mean reprojection error for RHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.9 px (~ 0.026 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.2 px (~ 0.014 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.5 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.05 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.5 px (~ 0.016 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.1 px (~ 0.018 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.6 px (~ 0.016 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.1 px (~ 0.018 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 1% of the time, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_93_p1\pose-3d\0_2_93_p1_0-312.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m15s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_94_p1, for all frames.
On Wednesday 11. December 2024, 15:12:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_94_p1

Mean reprojection error for RHip is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.8 px (~ 0.026 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.0 px (~ 0.013 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.8 px, which roughly corresponds to 12.4 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_94_p1\pose-3d\0_2_94_p1_0-267.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m14s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_95_p1, for all frames.
On Wednesday 11. December 2024, 15:12:52
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_95_p1

Mean reprojection error for RHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 6.1 px (~ 0.027 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.9 px (~ 0.026 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.0 px (~ 0.018 m), reached with 0.06 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.1 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.01 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 1% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_95_p1\pose-3d\0_2_95_p1_0-359.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m17s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_96_p1, for all frames.
On Wednesday 11. December 2024, 15:13:10
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_96_p1

Mean reprojection error for RHip is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 6.2 px (~ 0.027 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 4.1 px (~ 0.018 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, Camera cam1: 0%, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_96_p1\pose-3d\0_2_96_p1_0-360.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m22s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_97_p1, for all frames.
On Wednesday 11. December 2024, 15:13:32
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_97_p1

Mean reprojection error for RHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.4 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.5 px (~ 0.011 m), reached with 0.08 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 2.8 px (~ 0.012 m), reached with 0.03 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.7 px, which roughly corresponds to 12.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_97_p1\pose-3d\0_2_97_p1_0-391.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m19s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_98_p1, for all frames.
On Wednesday 11. December 2024, 15:13:51
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_98_p1

Mean reprojection error for RHip is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.5 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.4 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  Frames 313 to 313 were interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_98_p1\pose-3d\0_2_98_p1_0-323.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_99_p1, for all frames.
On Wednesday 11. December 2024, 15:14:07
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_99_p1

Mean reprojection error for RHip is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.9 px (~ 0.026 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.8 px (~ 0.021 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.2 px, which roughly corresponds to 14.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_99_p1\pose-3d\0_2_99_p1_0-371.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m18s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_100_p1, for all frames.
On Wednesday 11. December 2024, 15:14:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_100_p1

Mean reprojection error for RHip is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.3 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.2 px, which roughly corresponds to 14.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_100_p1\pose-3d\0_2_100_p1_0-400.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m19s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_101_p1, for all frames.
On Wednesday 11. December 2024, 15:14:45
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_101_p1

Mean reprojection error for RHip is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 6.5 px (~ 0.029 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.5 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, and Camera cam3: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_101_p1\pose-3d\0_2_101_p1_0-211.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m10s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_102_p1, for all frames.
On Wednesday 11. December 2024, 15:14:55
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_102_p1

Mean reprojection error for RHip is 5.1 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 6.7 px (~ 0.03 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.2 px (~ 0.005 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.2 px (~ 0.019 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.4 px, which roughly corresponds to 15.1 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_102_p1\pose-3d\0_2_102_p1_0-307.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m15s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_103_p1, for all frames.
On Wednesday 11. December 2024, 15:15:10
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_103_p1

Mean reprojection error for RHip is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 6.7 px (~ 0.03 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.2 px, which roughly corresponds to 14.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_103_p1\pose-3d\0_2_103_p1_0-409.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m20s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_104_p1, for all frames.
On Wednesday 11. December 2024, 15:15:31
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_104_p1

Mean reprojection error for RHip is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 7.0 px (~ 0.031 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_104_p1\pose-3d\0_2_104_p1_0-251.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m12s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_105_p1, for all frames.
On Wednesday 11. December 2024, 15:15:43
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_105_p1

Mean reprojection error for RHip is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.4 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.8 px (~ 0.012 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 2.9 px, which roughly corresponds to 12.9 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_105_p1\pose-3d\0_2_105_p1_0-237.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m11s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_106_p1, for all frames.
On Wednesday 11. December 2024, 15:15:55
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_106_p1

Mean reprojection error for RHip is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 4.9 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.3 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.9 px (~ 0.026 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.5 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_106_p1\pose-3d\0_2_106_p1_0-202.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m09s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_107_p1, for all frames.
On Wednesday 11. December 2024, 15:16:05
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_107_p1

Mean reprojection error for RHip is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.1 px (~ 0.023 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.4 px (~ 0.006 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 6.0 px (~ 0.027 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.02 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 2.9 px (~ 0.013 m), reached with 0.04 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.3 px (~ 0.015 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.0 px, which roughly corresponds to 13.3 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_107_p1\pose-3d\0_2_107_p1_0-342.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m16s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_108_p1, for all frames.
On Wednesday 11. December 2024, 15:16:22
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_108_p1

Mean reprojection error for RHip is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 6.8 px (~ 0.03 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.9 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.2 px, which roughly corresponds to 14.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_108_p1\pose-3d\0_2_108_p1_0-313.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m15s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_109_p1, for all frames.
On Wednesday 11. December 2024, 15:16:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_109_p1

Mean reprojection error for RHip is 5.8 px (~ 0.026 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 6.6 px (~ 0.029 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.2 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.4 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.1 px (~ 0.018 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 4.3 px (~ 0.019 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.7 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 5.0 px (~ 0.022 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.6 px, which roughly corresponds to 16.0 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_109_p1\pose-3d\0_2_109_p1_0-369.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m21s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_110_p1, for all frames.
On Wednesday 11. December 2024, 15:16:58
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_110_p1

Mean reprojection error for RHip is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.4 px (~ 0.024 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.8 px (~ 0.026 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.4 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.2 px, which roughly corresponds to 14.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam2 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_110_p1\pose-3d\0_2_110_p1_0-388.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m19s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_111_p1, for all frames.
On Wednesday 11. December 2024, 15:17:18
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_111_p1

Mean reprojection error for RHip is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.6 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.6 px (~ 0.007 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 6.0 px (~ 0.027 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.5 px (~ 0.016 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 3.8 px (~ 0.017 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.4 px (~ 0.019 m), reached with 0.01 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.0 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, 

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_111_p1\pose-3d\0_2_111_p1_0-344.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m19s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_112_p1, for all frames.
On Wednesday 11. December 2024, 15:17:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_112_p1

Mean reprojection error for RHip is 4.6 px (~ 0.02 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.2 px (~ 0.023 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 1.8 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 4.8 px (~ 0.021 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 2.6 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.7 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.5 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 3.3 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RIndex is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.0 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.2 px, which roughly corresponds to 14.2 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam3 was excluded 0% of the time, and Camera cam1: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_112_p1\pose-3d\0_2_112_p1_0-290.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m19s.


---------------------------------------------------------------------
Triangulation of 2D points for 0_2_113_p1, for all frames.
On Wednesday 11. December 2024, 15:17:57
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_113_p1

Mean reprojection error for RHip is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RKnee is 5.9 px (~ 0.026 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RAnkle is 1.7 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RBigToe is 4.1 px (~ 0.018 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RSmallToe is 2.8 px (~ 0.012 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RHeel is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHip is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LKnee is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LAnkle is 2.9 px (~ 0.013 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LBigToe is 2.0 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LSmallToe is 3.1 px (~ 0.014 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LHeel is 5.7 px (~ 0.025 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Neck is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Head is 2.3 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for Nose is 1.9 px (~ 0.008 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RShoulder is 2.1 px (~ 0.009 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RWrist is 3.4 px (~ 0.015 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RThumb is 4.0 px (~ 0.018 m), reached with 0.06 excluded cameras. 
  Frames 262 to 263 were interpolated.
Mean reprojection error for RIndex is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for RPinky is 4.2 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LShoulder is 2.2 px (~ 0.01 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LElbow is 2.5 px (~ 0.011 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LWrist is 3.6 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LThumb is 4.3 px (~ 0.019 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LIndex is 3.7 px (~ 0.016 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.
Mean reprojection error for LPinky is 3.8 px (~ 0.017 m), reached with 0.0 excluded cameras. 
  No frames needed to be interpolated.

--> Mean reprojection error for all points on all frames is 3.1 px, which roughly corresponds to 13.7 mm. 
Cameras were excluded if likelihood was below 0.3 and if the reprojection error was above 15 px.
In average, 0.0 cameras had to be excluded to reach these thresholds.
Camera cam1 was excluded 0% of the time, Camera cam3: 0%, and Camera cam2: 0%.

3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_113_p1\pose-3d\0_2_113_p1_0-273.trc.



Limb swapping was not handled.
Lens distortions were not taken into account.

Triangulation took 00h00m13s.


---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_0_p0, for all frames.
On Wednesday 11. December 2024, 15:18:24
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_0_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_0_p0\pose-3d\0_2_0_p0_0-188_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_1_p0, for all frames.
On Wednesday 11. December 2024, 15:18:24
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_1_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_1_p0\pose-3d\0_2_1_p0_0-222_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_2_p0, for all frames.
On Wednesday 11. December 2024, 15:18:24
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_2_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_2_p0\pose-3d\0_2_2_p0_0-403_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_3_p0, for all frames.
On Wednesday 11. December 2024, 15:18:24
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_3_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_3_p0\pose-3d\0_2_3_p0_0-153_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_4_p0, for all frames.
On Wednesday 11. December 2024, 15:18:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_4_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_4_p0\pose-3d\0_2_4_p0_0-600_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_5_p0, for all frames.
On Wednesday 11. December 2024, 15:18:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_5_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_5_p0\pose-3d\0_2_5_p0_0-179_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_6_p0, for all frames.
On Wednesday 11. December 2024, 15:18:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_6_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_6_p0\pose-3d\0_2_6_p0_0-318_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_7_p0, for all frames.
On Wednesday 11. December 2024, 15:18:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_7_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_7_p0\pose-3d\0_2_7_p0_0-472_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_8_p0, for all frames.
On Wednesday 11. December 2024, 15:18:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_8_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_8_p0\pose-3d\0_2_8_p0_0-189_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_9_p0, for all frames.
On Wednesday 11. December 2024, 15:18:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_9_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_9_p0\pose-3d\0_2_9_p0_0-232_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_10_p0, for all frames.
On Wednesday 11. December 2024, 15:18:25
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_10_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_10_p0\pose-3d\0_2_10_p0_0-347_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_11_p0, for all frames.
On Wednesday 11. December 2024, 15:18:26
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_11_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_11_p0\pose-3d\0_2_11_p0_0-329_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_12_p0, for all frames.
On Wednesday 11. December 2024, 15:18:26
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_12_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_12_p0\pose-3d\0_2_12_p0_0-364_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_13_p0, for all frames.
On Wednesday 11. December 2024, 15:18:26
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_13_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_13_p0\pose-3d\0_2_13_p0_0-319_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_14_p0, for all frames.
On Wednesday 11. December 2024, 15:18:26
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_14_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_14_p0\pose-3d\0_2_14_p0_0-391_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_15_p0, for all frames.
On Wednesday 11. December 2024, 15:18:26
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_15_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_15_p0\pose-3d\0_2_15_p0_0-182_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_16_p0, for all frames.
On Wednesday 11. December 2024, 15:18:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_16_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_16_p0\pose-3d\0_2_16_p0_0-218_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_17_p0, for all frames.
On Wednesday 11. December 2024, 15:18:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_17_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_17_p0\pose-3d\0_2_17_p0_0-274_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_18_p0, for all frames.
On Wednesday 11. December 2024, 15:18:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_18_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_18_p0\pose-3d\0_2_18_p0_0-448_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_38_p0, for all frames.
On Wednesday 11. December 2024, 15:18:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_38_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_38_p0\pose-3d\0_2_38_p0_0-469_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_39_p0, for all frames.
On Wednesday 11. December 2024, 15:18:27
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_39_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_39_p0\pose-3d\0_2_39_p0_0-407_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_40_p0, for all frames.
On Wednesday 11. December 2024, 15:18:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_40_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_40_p0\pose-3d\0_2_40_p0_0-367_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_41_p0, for all frames.
On Wednesday 11. December 2024, 15:18:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_41_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_41_p0\pose-3d\0_2_41_p0_0-291_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_42_p0, for all frames.
On Wednesday 11. December 2024, 15:18:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_42_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_42_p0\pose-3d\0_2_42_p0_0-395_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_43_p0, for all frames.
On Wednesday 11. December 2024, 15:18:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_43_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_43_p0\pose-3d\0_2_43_p0_0-352_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_44_p0, for all frames.
On Wednesday 11. December 2024, 15:18:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_44_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_44_p0\pose-3d\0_2_44_p0_0-364_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_45_p0, for all frames.
On Wednesday 11. December 2024, 15:18:28
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_45_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_45_p0\pose-3d\0_2_45_p0_0-340_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_46_p0, for all frames.
On Wednesday 11. December 2024, 15:18:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_46_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_46_p0\pose-3d\0_2_46_p0_0-437_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_47_p0, for all frames.
On Wednesday 11. December 2024, 15:18:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_47_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_47_p0\pose-3d\0_2_47_p0_0-225_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_48_p0, for all frames.
On Wednesday 11. December 2024, 15:18:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_48_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_48_p0\pose-3d\0_2_48_p0_0-323_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_49_p0, for all frames.
On Wednesday 11. December 2024, 15:18:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_49_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_49_p0\pose-3d\0_2_49_p0_0-204_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_50_p0, for all frames.
On Wednesday 11. December 2024, 15:18:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_50_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_50_p0\pose-3d\0_2_50_p0_0-332_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_51_p0, for all frames.
On Wednesday 11. December 2024, 15:18:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_51_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_51_p0\pose-3d\0_2_51_p0_0-426_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_52_p0, for all frames.
On Wednesday 11. December 2024, 15:18:29
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_52_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_52_p0\pose-3d\0_2_52_p0_0-452_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_67_p0, for all frames.
On Wednesday 11. December 2024, 15:18:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_67_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_67_p0\pose-3d\0_2_67_p0_0-205_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_68_p0, for all frames.
On Wednesday 11. December 2024, 15:18:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_68_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_68_p0\pose-3d\0_2_68_p0_0-297_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_69_p0, for all frames.
On Wednesday 11. December 2024, 15:18:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_69_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_69_p0\pose-3d\0_2_69_p0_0-338_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_70_p0, for all frames.
On Wednesday 11. December 2024, 15:18:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_70_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_70_p0\pose-3d\0_2_70_p0_0-455_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_71_p0, for all frames.
On Wednesday 11. December 2024, 15:18:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_71_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_71_p0\pose-3d\0_2_71_p0_0-246_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_72_p0, for all frames.
On Wednesday 11. December 2024, 15:18:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_72_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_72_p0\pose-3d\0_2_72_p0_0-301_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_73_p0, for all frames.
On Wednesday 11. December 2024, 15:18:30
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_73_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_73_p0\pose-3d\0_2_73_p0_0-320_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_74_p0, for all frames.
On Wednesday 11. December 2024, 15:18:31
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_74_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_74_p0\pose-3d\0_2_74_p0_0-302_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_75_p0, for all frames.
On Wednesday 11. December 2024, 15:18:31
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_75_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_75_p0\pose-3d\0_2_75_p0_0-320_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_76_p0, for all frames.
On Wednesday 11. December 2024, 15:18:31
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_76_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_76_p0\pose-3d\0_2_76_p0_0-224_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_77_p0, for all frames.
On Wednesday 11. December 2024, 15:18:31
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_77_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_77_p0\pose-3d\0_2_77_p0_0-272_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_78_p0, for all frames.
On Wednesday 11. December 2024, 15:18:31
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_78_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_78_p0\pose-3d\0_2_78_p0_0-257_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_79_p0, for all frames.
On Wednesday 11. December 2024, 15:18:31
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_79_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_79_p0\pose-3d\0_2_79_p0_0-254_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_80_p0, for all frames.
On Wednesday 11. December 2024, 15:18:31
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_80_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_80_p0\pose-3d\0_2_80_p0_0-204_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_81_p0, for all frames.
On Wednesday 11. December 2024, 15:18:32
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_81_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_81_p0\pose-3d\0_2_81_p0_0-248_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_82_p0, for all frames.
On Wednesday 11. December 2024, 15:18:32
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_82_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_82_p0\pose-3d\0_2_82_p0_0-317_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_83_p0, for all frames.
On Wednesday 11. December 2024, 15:18:32
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_83_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_83_p0\pose-3d\0_2_83_p0_0-333_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_84_p0, for all frames.
On Wednesday 11. December 2024, 15:18:32
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_84_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_84_p0\pose-3d\0_2_84_p0_0-302_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_85_p0, for all frames.
On Wednesday 11. December 2024, 15:18:32
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_85_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_85_p0\pose-3d\0_2_85_p0_0-249_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_86_p0, for all frames.
On Wednesday 11. December 2024, 15:18:32
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_86_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_86_p0\pose-3d\0_2_86_p0_0-221_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_87_p0, for all frames.
On Wednesday 11. December 2024, 15:18:32
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_87_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_87_p0\pose-3d\0_2_87_p0_0-221_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_88_p0, for all frames.
On Wednesday 11. December 2024, 15:18:33
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_88_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_88_p0\pose-3d\0_2_88_p0_0-176_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_89_p0, for all frames.
On Wednesday 11. December 2024, 15:18:33
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_89_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_89_p0\pose-3d\0_2_89_p0_0-333_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_90_p0, for all frames.
On Wednesday 11. December 2024, 15:18:33
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_90_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_90_p0\pose-3d\0_2_90_p0_0-234_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_91_p0, for all frames.
On Wednesday 11. December 2024, 15:18:33
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_91_p0

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P0\0_2_91_p0\pose-3d\0_2_91_p0_0-188_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_19_p1, for all frames.
On Wednesday 11. December 2024, 15:18:33
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_19_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_19_p1\pose-3d\0_2_19_p1_0-263_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_20_p1, for all frames.
On Wednesday 11. December 2024, 15:18:33
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_20_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_20_p1\pose-3d\0_2_20_p1_0-268_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_21_p1, for all frames.
On Wednesday 11. December 2024, 15:18:33
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_21_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_21_p1\pose-3d\0_2_21_p1_0-280_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_22_p1, for all frames.
On Wednesday 11. December 2024, 15:18:33
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_22_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_22_p1\pose-3d\0_2_22_p1_0-398_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_23_p1, for all frames.
On Wednesday 11. December 2024, 15:18:34
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_23_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_23_p1\pose-3d\0_2_23_p1_0-300_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_24_p1, for all frames.
On Wednesday 11. December 2024, 15:18:34
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_24_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_24_p1\pose-3d\0_2_24_p1_0-312_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_25_p1, for all frames.
On Wednesday 11. December 2024, 15:18:34
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_25_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_25_p1\pose-3d\0_2_25_p1_0-307_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_26_p1, for all frames.
On Wednesday 11. December 2024, 15:18:34
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_26_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_26_p1\pose-3d\0_2_26_p1_0-332_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_27_p1, for all frames.
On Wednesday 11. December 2024, 15:18:34
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_27_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_27_p1\pose-3d\0_2_27_p1_0-352_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_28_p1, for all frames.
On Wednesday 11. December 2024, 15:18:34
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_28_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_28_p1\pose-3d\0_2_28_p1_0-363_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_29_p1, for all frames.
On Wednesday 11. December 2024, 15:18:34
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_29_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_29_p1\pose-3d\0_2_29_p1_0-262_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_30_p1, for all frames.
On Wednesday 11. December 2024, 15:18:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_30_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_30_p1\pose-3d\0_2_30_p1_0-332_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_31_p1, for all frames.
On Wednesday 11. December 2024, 15:18:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_31_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_31_p1\pose-3d\0_2_31_p1_0-433_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_32_p1, for all frames.
On Wednesday 11. December 2024, 15:18:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_32_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_32_p1\pose-3d\0_2_32_p1_0-300_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_33_p1, for all frames.
On Wednesday 11. December 2024, 15:18:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_33_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_33_p1\pose-3d\0_2_33_p1_0-220_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_34_p1, for all frames.
On Wednesday 11. December 2024, 15:18:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_34_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_34_p1\pose-3d\0_2_34_p1_0-242_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_35_p1, for all frames.
On Wednesday 11. December 2024, 15:18:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_35_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_35_p1\pose-3d\0_2_35_p1_0-327_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_36_p1, for all frames.
On Wednesday 11. December 2024, 15:18:35
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_36_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_36_p1\pose-3d\0_2_36_p1_0-256_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_37_p1, for all frames.
On Wednesday 11. December 2024, 15:18:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_37_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_37_p1\pose-3d\0_2_37_p1_0-391_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_53_p1, for all frames.
On Wednesday 11. December 2024, 15:18:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_53_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_53_p1\pose-3d\0_2_53_p1_0-405_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_54_p1, for all frames.
On Wednesday 11. December 2024, 15:18:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_54_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_54_p1\pose-3d\0_2_54_p1_0-445_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_55_p1, for all frames.
On Wednesday 11. December 2024, 15:18:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_55_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_55_p1\pose-3d\0_2_55_p1_0-499_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_56_p1, for all frames.
On Wednesday 11. December 2024, 15:18:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_56_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_56_p1\pose-3d\0_2_56_p1_0-210_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_57_p1, for all frames.
On Wednesday 11. December 2024, 15:18:36
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_57_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_57_p1\pose-3d\0_2_57_p1_0-316_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_58_p1, for all frames.
On Wednesday 11. December 2024, 15:18:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_58_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_58_p1\pose-3d\0_2_58_p1_0-320_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_59_p1, for all frames.
On Wednesday 11. December 2024, 15:18:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_59_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_59_p1\pose-3d\0_2_59_p1_0-321_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_60_p1, for all frames.
On Wednesday 11. December 2024, 15:18:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_60_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_60_p1\pose-3d\0_2_60_p1_0-205_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_61_p1, for all frames.
On Wednesday 11. December 2024, 15:18:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_61_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_61_p1\pose-3d\0_2_61_p1_0-183_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_62_p1, for all frames.
On Wednesday 11. December 2024, 15:18:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_62_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_62_p1\pose-3d\0_2_62_p1_0-323_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_63_p1, for all frames.
On Wednesday 11. December 2024, 15:18:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_63_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_63_p1\pose-3d\0_2_63_p1_0-436_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_64_p1, for all frames.
On Wednesday 11. December 2024, 15:18:37
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_64_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_64_p1\pose-3d\0_2_64_p1_0-461_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_65_p1, for all frames.
On Wednesday 11. December 2024, 15:18:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_65_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_65_p1\pose-3d\0_2_65_p1_0-257_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_66_p1, for all frames.
On Wednesday 11. December 2024, 15:18:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_66_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_66_p1\pose-3d\0_2_66_p1_0-382_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_92_p1, for all frames.
On Wednesday 11. December 2024, 15:18:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_92_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_92_p1\pose-3d\0_2_92_p1_0-255_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_93_p1, for all frames.
On Wednesday 11. December 2024, 15:18:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_93_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_93_p1\pose-3d\0_2_93_p1_0-312_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_94_p1, for all frames.
On Wednesday 11. December 2024, 15:18:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_94_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_94_p1\pose-3d\0_2_94_p1_0-267_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_95_p1, for all frames.
On Wednesday 11. December 2024, 15:18:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_95_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_95_p1\pose-3d\0_2_95_p1_0-359_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_96_p1, for all frames.
On Wednesday 11. December 2024, 15:18:38
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_96_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_96_p1\pose-3d\0_2_96_p1_0-360_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_97_p1, for all frames.
On Wednesday 11. December 2024, 15:18:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_97_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_97_p1\pose-3d\0_2_97_p1_0-391_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_98_p1, for all frames.
On Wednesday 11. December 2024, 15:18:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_98_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_98_p1\pose-3d\0_2_98_p1_0-323_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_99_p1, for all frames.
On Wednesday 11. December 2024, 15:18:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_99_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_99_p1\pose-3d\0_2_99_p1_0-371_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_100_p1, for all frames.
On Wednesday 11. December 2024, 15:18:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_100_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_100_p1\pose-3d\0_2_100_p1_0-400_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_101_p1, for all frames.
On Wednesday 11. December 2024, 15:18:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_101_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_101_p1\pose-3d\0_2_101_p1_0-211_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_102_p1, for all frames.
On Wednesday 11. December 2024, 15:18:39
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_102_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_102_p1\pose-3d\0_2_102_p1_0-307_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_103_p1, for all frames.
On Wednesday 11. December 2024, 15:18:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_103_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_103_p1\pose-3d\0_2_103_p1_0-409_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_104_p1, for all frames.
On Wednesday 11. December 2024, 15:18:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_104_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_104_p1\pose-3d\0_2_104_p1_0-251_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_105_p1, for all frames.
On Wednesday 11. December 2024, 15:18:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_105_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_105_p1\pose-3d\0_2_105_p1_0-237_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_106_p1, for all frames.
On Wednesday 11. December 2024, 15:18:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_106_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_106_p1\pose-3d\0_2_106_p1_0-202_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_107_p1, for all frames.
On Wednesday 11. December 2024, 15:18:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_107_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_107_p1\pose-3d\0_2_107_p1_0-342_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_108_p1, for all frames.
On Wednesday 11. December 2024, 15:18:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_108_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_108_p1\pose-3d\0_2_108_p1_0-313_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_109_p1, for all frames.
On Wednesday 11. December 2024, 15:18:40
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_109_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_109_p1\pose-3d\0_2_109_p1_0-369_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_110_p1, for all frames.
On Wednesday 11. December 2024, 15:18:41
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_110_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_110_p1\pose-3d\0_2_110_p1_0-388_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_111_p1, for all frames.
On Wednesday 11. December 2024, 15:18:41
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_111_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_111_p1\pose-3d\0_2_111_p1_0-344_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_112_p1, for all frames.
On Wednesday 11. December 2024, 15:18:41
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_112_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_112_p1\pose-3d\0_2_112_p1_0-290_filt_butterworth.trc.



---------------------------------------------------------------------
Filtering 3D coordinates for 0_2_113_p1, for all frames.
On Wednesday 11. December 2024, 15:18:41
---------------------------------------------------------------------

Project directory: E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_113_p1

--> Filter type: Butterworth low-pass. Order 4, Cut-off frequency 10 Hz.
Filtered 3D coordinates are stored at E:\FLESH_ContinuousBodilyEffort\02_MotionTracking_processing\projectdata\Session_0_2\P1\0_2_113_p1\pose-3d\0_2_113_p1_0-273_filt_butterworth.trc.

To get more comprehensive overview of the error for each file, we will extract the relevant information for each trial by acessing regular expressions in the logs.txt file.

import re

# Function to load text file
def load_log_file(filename):
    with open(filename, 'r') as file:
        text = file.read()
    return text

# Sample file path (replace with the actual path to your log file)
file_path = log  # Replace with your actual file path

# Load the log file text
log_data = load_log_file(file_path)

# Pattern to extract trials (trial name, date, triangulation, mean reprojection error, and camera exclusions)
trial_pattern = r"(Triangulation of 2D points for (\S+).*?11. December.*?Mean reprojection error for all points on all frames is (\d+\.\d+) px.*?which roughly corresponds to (\d+\.\d+) mm.*?Camera (cam\d) was excluded (\d+)%.*?)(?=Triangulation|$)"

# Find all trials for 11 December
trial_chunks = re.findall(trial_pattern, log_data, flags=re.DOTALL)

# Store results
trial_results = []

# Process each trial
for trial_chunk in trial_chunks:
    full_trial_info = trial_chunk[0]  # Entire chunk related to a trial
    trial_name = trial_chunk[1]  # Extract trial name (e.g., 0_2_38_p0)
    mean_reprojection_error_px = trial_chunk[2]  # Mean reprojection error in px
    mean_reprojection_error_mm = trial_chunk[3]  # Mean reprojection error in mm
    
    # Add extracted information to results
    trial_results.append({
        'trial_name': trial_name,
        'mean_reprojection_error_px': mean_reprojection_error_px,
        'mean_reprojection_error_mm': mean_reprojection_error_mm
    })

# trial_results to df
df = pd.DataFrame(trial_results)

df.head(15)
trial_name mean_reprojection_error_px mean_reprojection_error_mm
0 0_1_tpose_p0, 2.4 10.6
1 0_1_4_p0, 2.6 11.5
2 0_1_20_p0, 2.5 11.0
3 0_1_21_p0, 2.4 10.6
4 0_1_22_p0, 2.3 10.2
5 0_1_23_p0, 2.3 10.2
6 0_1_24_p0, 2.5 11.0
7 0_1_25_p0, 2.4 10.6
8 0_1_26_p0, 2.5 11.0
9 0_1_36_p0, 2.7 11.9
10 0_1_37_p0, 2.8 12.4
11 0_1_38_p0, 2.6 11.5
12 0_1_39_p0, 2.6 11.5
13 0_1_40_p0, 2.8 12.4
14 0_1_41_p0, 2.4 10.6

What is the mean reprojection error across trials in mm?

df['mean_reprojection_error_mm'] = df['mean_reprojection_error_mm'].astype(float)
mean_repro = df['mean_reprojection_error_mm'].mean()
print('Mean reprojection error for all trials is ', mean_repro, ' mm')
Mean reprojection error for all trials is  12.284709480122325  mm

Is there any trial that has an error above 2 cm?

df['mean_reprojection_error_mm'] = df['mean_reprojection_error_mm'].astype(float)
df[df['mean_reprojection_error_mm'] > 20]
trial_name mean_reprojection_error_px mean_reprojection_error_mm